2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-06-24 08:28:53 +08:00
|
|
|
|
|
|
|
void f() {
|
|
|
|
struct X {
|
|
|
|
static int a; // expected-error {{static data member 'a' not allowed in local class 'X'}}
|
|
|
|
int b;
|
|
|
|
|
|
|
|
static void f() { }
|
|
|
|
};
|
2009-07-28 05:00:51 +08:00
|
|
|
}
|