blob: 81dbd907ac786ae26c687c6ce4ffc9923e225ec6 [file] [log] [blame]
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00001// Test this without pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00002// RUN: %clang_cc1 -include %S/enum.h -fsyntax-only -verify %s
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00003
4// Test with pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00005// RUN: %clang_cc1 -emit-pch -o %t %S/enum.h
6// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00007
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00008// expected-no-diagnostics
9
Douglas Gregor0a2b45e2009-04-13 18:14:40 +000010int i = Red;
11
12int return_enum_constant() {
13 int result = aRoundShape;
14 return result;
15}
16
17enum Shape s = Triangle;