Clang Project

clang_source_code/test/SemaCXX/implicit-int.cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3x; // expected-error{{C++ requires a type specifier for all declarations}}
4
5f(int y) { return y; } // expected-error{{C++ requires a type specifier for all declarations}}
6