Home
last modified time | relevance | path

Searched refs:LongConstant (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/test/Sema/
H A Dformat-strings-enum.c29 typedef enum { LongConstant = ~0UL } LongEnum; enumerator
33 printf("%u", LongConstant); // expected-warning{{format specifies type 'unsigned int'}} in testLong()
36 printf("%lu", LongConstant); in testLong()
H A Dformat-strings-enum-fixed-type.cpp34 typedef enum : unsigned long { LongConstant = ~0UL } LongEnum; enumerator
38 printf("%u", LongConstant); // expected-warning{{format specifies type 'unsigned int'}} in testLong()
41 printf("%lu", LongConstant); in testLong()