HomeSort by relevance Sort by last modified time
    Searched refs:LongEnum (Results 1 - 2 of 2) sorted by null

  /external/clang/test/Sema/
format-strings-enum.c 28 typedef enum { LongConstant = ~0UL } LongEnum;
30 void testLong(LongEnum input) {
31 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has type 'LongEnum'}}
format-strings-enum-fixed-type.cpp 34 typedef enum : unsigned long { LongConstant = ~0UL } LongEnum;
36 void testLong(LongEnum input) {
37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has type 'LongEnum'}}

Completed in 168 milliseconds