Lines Matching full:enum
5 enum SE1 { N1 = -1 };
6 enum SE2 { N2 = -2 };
8 enum UE1 { P1 };
9 enum UE2 { P2 };
11 enum UE2 f1(enum UE1 E) { in f1()
12 …-warning {{implicit conversion from enumeration type 'enum UE1' to different enumeration type 'enu… in f1()
15 enum SE1 f2(enum UE1 E) { in f2()
16 …-warning {{implicit conversion from enumeration type 'enum UE1' to different enumeration type 'enu… in f2()
19 enum UE1 f3(enum SE1 E) { in f3()
20 …-warning {{implicit conversion from enumeration type 'enum SE1' to different enumeration type 'enu… in f3()
23 enum SE2 f4(enum SE1 E) { in f4()
24 …-warning {{implicit conversion from enumeration type 'enum SE1' to different enumeration type 'enu… in f4()