diff options
Diffstat (limited to 'test/Parser/cxx0x-in-cxx98.cpp')
-rw-r--r-- | test/Parser/cxx0x-in-cxx98.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Parser/cxx0x-in-cxx98.cpp b/test/Parser/cxx0x-in-cxx98.cpp index b4bda89..7249938 100644 --- a/test/Parser/cxx0x-in-cxx98.cpp +++ b/test/Parser/cxx0x-in-cxx98.cpp @@ -21,3 +21,10 @@ void NewBracedInitList() { // A warning on this would be sufficient once we can handle it correctly. new int {}; // expected-error {{}} } + +struct Auto { + static int n; +}; +auto Auto::n = 0; // expected-warning {{'auto' type specifier is a C++11 extension}} +auto Auto::m = 0; // expected-error {{no member named 'm' in 'Auto'}} + // expected-warning@-1 {{'auto' type specifier is a C++11 extension}} |