aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.lookup/basic.lookup.unqual/p13.cpp
blob: 037d590f4ebc5b3cc5136b040b16027a9d2df394 (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc -fsyntax-only -verify %s
// XFAIL

struct S {
  static const int f0 = 0;
  static int f1;
};

int S::f1 = f0;