// RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s
inline
;
;
void
;
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}}
;
bool pr21367_a = new int && false;
bool pr21367_b = &Conv::operator int && false;