// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98 -Wc++11-compat
voidf(){autoint a;// expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}}
intauto b;// expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}}
auto c;// expected-warning {{C++11 extension}} expected-error {{requires an initializer}}
staticauto d =0;// expected-warning {{C++11 extension}}
autostatic e =0;// expected-warning {{C++11 extension}}
}