Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 1 | // Test this without pch. |
Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 2 | // RUN: %clang_cc1 -include %S/enum.h -fsyntax-only -verify %s |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 3 | |
| 4 | // Test with pch. |
Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 5 | // RUN: %clang_cc1 -emit-pch -o %t %S/enum.h |
| 6 | // RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 7 | |
| 8 | int i = Red; |
| 9 | |
| 10 | int return_enum_constant() { |
| 11 | int result = aRoundShape; |
| 12 | return result; |
| 13 | } |
| 14 | |
| 15 | enum Shape s = Triangle; |