summaryrefslogtreecommitdiff
path: root/test/PCH/typo2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/PCH/typo2.cpp')
-rw-r--r--test/PCH/typo2.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/PCH/typo2.cpp b/test/PCH/typo2.cpp
new file mode 100644
index 0000000000000..f9b4c833e040b
--- /dev/null
+++ b/test/PCH/typo2.cpp
@@ -0,0 +1,13 @@
+// RUN: %clang_cc1 -emit-pch %s -o %t.pch
+// RUN: %clang_cc1 -include-pch %t.pch %s -verify
+
+#ifndef HEADER_INCLUDED
+#define HEADER_INCLUDED
+
+void func(struct Test); // expected-note{{'Test' declared here}}
+
+#else
+
+::Yest *T; // expected-error{{did you mean 'Test'}}
+
+#endif