1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
8 // The first case is invalid in the C++03 mode but valid in C++0x (see 5.1.1.10).
10 static char a
[sizeof(x
)]; // okay
11 static char b
[sizeof(sx
)]; // okay
12 static char c
[sizeof(f
)]; // expected-error {{call to non-static member function without an object argument}}