Searched defs:CCTestEnum (Results 1 - 1 of 1) sorted by relevance

/external/clang/test/Sema/
H A Dwarn-outof-range-assign-enum.c4 typedef enum CCTestEnum enum
9 } CCTestEnum; typedef in typeref:enum:CCTestEnum
11 CCTestEnum test = 50; // expected-warning {{integer constant not in range of enumerated type 'CCTestEnum'}}
12 CCTestEnum test1 = -50; // expected-warning {{integer constant not in range of enumerated type 'CCTestEnum'}}
15 static const CCTestEnum SilenceWithCast1 = 51; // expected-warning {{integer constant not in range of enumerated type 'CCTestEnum'}}
16 static const CCTestEnum SilenceWithCast2 = (CCTestEnum) 5
[all...]

Completed in 87 milliseconds