xref
: /
aosp_15_r20
/
external
/
stg
/
test_cases
/
info_tests
/
enum
/
simple.c
(revision 9e3b08ae94a55201065475453d799e8b1378bea6)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
enum
Foo
{
2
FOO_ZERO
= 0,
3
FOO_ONE
=
1
,
4
FOO_TWO
=
2
,
5
FOO_THREE
=
3
,
6
};
7
8
enum
Foo
bar
;
9