1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc x; // expected-error{{C++ requires a type specifier for all declarations}} 4*f4a2713aSLionel Sambuc f(int y)5*f4a2713aSLionel Sambucf(int y) { return y; } // expected-error{{C++ requires a type specifier for all declarations}} 6