blob: 49e1bd235396122b827bbc0d474f36e2b06d7de0 [file] [log] [blame]
John McCalle9472782009-08-05 23:56:26 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3class Outer {
4 int x;
5 static int sx;
6
7 class Inner {
8 static char a[sizeof(x)]; // expected-error {{ invalid use of nonstatic data member 'x' }}
9 static char b[sizeof(sx)]; // okay
10 };
11};