Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 1 | // Test this without pch. |
Chris Lattner | b3dcc74 | 2009-04-18 18:45:36 +0000 | [diff] [blame] | 2 | // RUN: clang-cc -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. |
Douglas Gregor | 8c70006 | 2009-04-13 21:20:57 +0000 | [diff] [blame] | 5 | // RUN: clang-cc -emit-pch -o %t %S/enum.h && |
| 6 | // RUN: clang-cc -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; |