Replace void with int to make this a valid C++ file.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 4 Jul 2013 14:25:25 +0000 (14:25 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 4 Jul 2013 14:25:25 +0000 (14:25 +0000)
The test was passing because clang would still print the ast before exiting
with an error. Since that didn't seem to be the intent of the test, I change
the test instead of adding 'not' to the command line.

llvm-svn: 185634

clang/test/CXX/dcl.dcl/dcl.link/p7-2.cpp

index 40f61c6..1e8f393 100644 (file)
@@ -1,7 +1,7 @@
 // RUN: %clang_cc1 -ast-print -o - %s | FileCheck %s
 
-extern "C" void f(void);
-// CHECK: extern "C" void f()
+extern "C" int f(void);
+// CHECK: extern "C" int f()
 
-extern "C" void v;
-// CHECK: extern "C" void v
+extern "C" int v;
+// CHECK: extern "C" int v