0028-noconstinit.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0028-noconstinit.c (124B)
---
1 #include <limits.h>
2
3 struct stk {
4 int f1;
5 int f2;
6 };
7
8 int
9 main()
10 {
11 static struct stk s = {LLONG_MAX+1};
12
13 return s.f2;
14 }