Searched refs:LongConstant (Results 1 – 2 of 2) sorted by relevance
29 typedef enum { LongConstant = ~0UL } LongEnum; enumerator33 printf("%u", LongConstant); // expected-warning{{format specifies type 'unsigned int'}} in testLong()36 printf("%lu", LongConstant); in testLong()
34 typedef enum : unsigned long { LongConstant = ~0UL } LongEnum; enumerator38 printf("%u", LongConstant); // expected-warning{{format specifies type 'unsigned int'}} in testLong()41 printf("%lu", LongConstant); in testLong()