aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/auto-cxx98.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/auto-cxx98.cpp')
-rw-r--r--test/SemaCXX/auto-cxx98.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/SemaCXX/auto-cxx98.cpp b/test/SemaCXX/auto-cxx98.cpp
new file mode 100644
index 000000000000..14670cd69942
--- /dev/null
+++ b/test/SemaCXX/auto-cxx98.cpp
@@ -0,0 +1,5 @@
+// RUN: clang-cc -fsyntax-only -verify %s -std=c++98
+void f() {
+ auto int a;
+ int auto b;
+}