forked from OSchip/llvm-project
10 lines
208 B
C++
10 lines
208 B
C++
|
// RUN: clang-cc -fsyntax-only -verify %s
|
||
|
|
||
|
void f() {
|
||
|
struct X {
|
||
|
static int a; // expected-error {{static data member 'a' not allowed in local class 'X'}}
|
||
|
int b;
|
||
|
|
||
|
static void f() { }
|
||
|
};
|
||
|
}
|