blob: 40702ad9689936985dfe54160cf3d078f09e49b9 [file] [log] [blame]
Anders Carlssone98da2e2009-06-24 00:28:53 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3void f() {
4 struct X {
5 static int a; // expected-error {{static data member 'a' not allowed in local class 'X'}}
6 int b;
7
8 static void f() { }
9 };
10}