Searched refs:CCTestEnum (Results 1 – 2 of 2) sorted by relevance
4 typedef enum CCTestEnum enum9 } CCTestEnum; typedef11 CCTestEnum test = 50; // expected-warning {{integer constant not in range of enumerated type 'CCTes…12 CCTestEnum test1 = -50; // expected-warning {{integer constant not in range of enumerated type 'CCT…15 static const CCTestEnum SilenceWithCast1 = 51; // expected-warning {{integer constant not in range …16 static const CCTestEnum SilenceWithCast2 = (CCTestEnum) 51; // no-warning17 static const CCTestEnum SilenceWithCast3 = (const CCTestEnum) 51; // no-warning18 static const CCTestEnum SilenceWithCast4 = (const volatile CCTestEnum) 51; // no-warning21 …CCTestEnum SilenceWithCast1 = 51; // expected-warning {{integer constant not in range of enumerate… in SilenceWithCastLocalVar()22 CCTestEnum SilenceWithCast2 = (CCTestEnum) 51; // no-warning in SilenceWithCastLocalVar()[all …]