1 /* Test for broken long long suffixes. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
4 /* The following are valid integer suffixes, according to C99:
14 The following are not but have been accepted by GCC in the past:
16 lul and case variants (the 'l's being separated by a 'u')
17 lL, Ll and variants with a 'u' (mixed case pair of 'l's)
19 (cpplib gets this right when processing #if expressions.)
23 unsigned long long a
= 1LUL; /* { dg-error "lul|LUL" "error for LUL suffix" } */
24 long long b
= 1Ll; /* { dg-error "Ll" "error for Ll suffix" } */