Douglas Gregor | ab6bc1d | 2011-10-25 03:07:45 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98 -Wc++11-compat |
Anders Carlsson | 082acde | 2009-06-26 18:41:36 +0000 | [diff] [blame] | 2 | void f() { |
Douglas Gregor | 205d044 | 2011-10-12 19:26:40 +0000 | [diff] [blame] | 3 | auto int a; // expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}} |
| 4 | int auto b; // expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}} |
| 5 | auto c; // expected-warning {{C++11 extension}} expected-error {{requires an initializer}} |
| 6 | static auto d = 0; // expected-warning {{C++11 extension}} |
| 7 | auto static e = 0; // expected-warning {{C++11 extension}} |
Anders Carlsson | 082acde | 2009-06-26 18:41:36 +0000 | [diff] [blame] | 8 | } |