diff options
Diffstat (limited to 'clang/test/SemaCXX/implicit-int.cpp')
-rw-r--r-- | clang/test/SemaCXX/implicit-int.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/implicit-int.cpp b/clang/test/SemaCXX/implicit-int.cpp new file mode 100644 index 0000000..9711adf --- /dev/null +++ b/clang/test/SemaCXX/implicit-int.cpp @@ -0,0 +1,5 @@ +// RUN: %clang_cc1 -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}} |