blob: 45b0491c6f53170fe7139bcb4cb30190bc306ea3 [file] [log] [blame]
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00001// Test this without pch.
Chris Lattnerb3dcc742009-04-18 18: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.
Douglas Gregor8c700062009-04-13 21:20:57 +00005// RUN: clang-cc -emit-pch -o %t %S/enum.h &&
6// 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;