0027-constoverflow.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0027-constoverflow.c (86B)
---
1 #include <limits.h>
2
3 static long long var = LLONG_MAX + 1;
4
5 int
6 main()
7 {
8 return 0;
9 }