]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CXX/class/class.nest/p1-cxx0x.cpp
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / CXX / class / class.nest / p1-cxx0x.cpp
1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
2
3 class Outer {
4   int x;
5   static int sx;
6   int f();
7
8   // The first case is invalid in the C++03 mode but valid in C++0x (see 5.1.1.10).
9   class Inner {
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 }}
13   };
14 };