scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | README | LICENSE

0253-maxconst.c (168B)


      1 int
      2 main(void)
      3 {
      4 	unsigned long long u = 18446744073709551615ull;
      5 
      6 	if (u != 18446744073709551615u)
      7 		return 1;
      8 	if (u != 0xFFFFFFFFFFFFFFFF)
      9 		return 2;
     10 
     11 	return 0;
     12 }