blob: 607de59a8aeacf81d0d484ad2fa43ab0341abd44 [file] [log] [blame]
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00001// Test this without pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -include %S/enum.h -fsyntax-only -verify %s
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00003
4// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: clang-cc -emit-pch -o %t %S/enum.h
Douglas Gregor8c700062009-04-13 21:20:57 +00006// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00007
8int i = Red;
9
10int return_enum_constant() {
11 int result = aRoundShape;
12 return result;
13}
14
15enum Shape s = Triangle;