blob: 92869b6bc83728534311fa6cc5625e3e1395119b [file] [log] [blame]
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00001// Test this without pch.
2// RUN: clang-cc -triple=i686-apple-darwin9 -include %S/enum.h -fsyntax-only -verify %s
3
4// Test with pch.
5// RUN: clang-cc -emit-pch -triple=i686-apple-darwin9 -o %t %S/enum.h &&
6// RUN: clang-cc -triple=i686-apple-darwin9 -include-pch %t -fsyntax-only -verify %s
7
8int i = Red;
9
10int return_enum_constant() {
11 int result = aRoundShape;
12 return result;
13}
14
15enum Shape s = Triangle;