John McCall | e947278 | 2009-08-05 23:56:26 +0000 | [diff] [blame^] | 1 | // RUN: clang-cc -fsyntax-only -verify %s |
2 | |||||
3 | class 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 | }; |