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