xref: /llvm-project/clang/test/SemaCXX/implicit-int.cpp (revision 2cb2cd242ca08d0bbd2a51a41f1317442e5414fc)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 x; // expected-error{{a type specifier is required for all declarations}}
4 
f(int y)5 f(int y) { return y; } // expected-error{{a type specifier is required for all declarations}}
6