1 // prms-id: 4263 2 3 enum OT {A_type, B_Type}; 4 enum AT {A, B}; 5 6 /* These are not ok. */ 7 OT t = A; // ERROR - 8 OT e2 = 1; // ERROR - 9 OT e3 = 1.1; // ERROR - 10 11 /* These are ok. */ 12 int i = A; 13 double d = A; 14 OT e4 = A_type; 15