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