summaryrefslogtreecommitdiffstats
path: root/test/PCH/enum.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/PCH/enum.c')
-rw-r--r--test/PCH/enum.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/PCH/enum.c b/test/PCH/enum.c
new file mode 100644
index 0000000..45b0491
--- /dev/null
+++ b/test/PCH/enum.c
@@ -0,0 +1,15 @@
+// Test this without pch.
+// RUN: clang-cc -include %S/enum.h -fsyntax-only -verify %s &&
+
+// Test with pch.
+// RUN: clang-cc -emit-pch -o %t %S/enum.h &&
+// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
+
+int i = Red;
+
+int return_enum_constant() {
+ int result = aRoundShape;
+ return result;
+}
+
+enum Shape s = Triangle;
OpenPOWER on IntegriCloud