repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
PCH
/
enum.h
blob
7dc4e631d6cba82990d7768fce8d9c23bcf29ef5
1
/* Used in enum.c test */
2
3
enum
Color
{
4
Red
,
5
Green
,
6
Blue
7
};
8
9
enum
Shape
{
10
Square
,
11
Triangle
=
17
,
12
Rhombus
,
13
Circle
14
};
15
16
enum
Shape aRoundShape
=
Circle
;