blob: f771810e6fa9a520785adf0221fef906d02ba8a4 (
plain)
1
2
3
4
5
|
// RUN: clang -fsyntax-only -verify %s
x; // expected-error{{C++ requires a type specifier for all declarations}}
f(int y) { return y; } // expected-error{{C++ requires a type specifier for all declarations}}
|