Sign in
cobalt
/
cobalt
/
308ed6b84664d59944cd65f4b4359c28a2443be6
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
PCH
/
enum.h
blob: 7dc4e631d6cba82990d7768fce8d9c23bcf29ef5 [
file
] [
log
] [
blame
]
/* Used in enum.c test */
enum
Color
{
Red
,
Green
,
Blue
};
enum
Shape
{
Square
,
Triangle
=
17
,
Rhombus
,
Circle
};
enum
Shape
aRoundShape
=
Circle
;