0096-inferredarraysize.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
---
0096-inferredarraysize.c (98B)
---
1 int a[] = {1, 2, 3, 4};
2
3 int
4 main()
5 {
6 if (sizeof(a) != 4*sizeof(int))
7 return 1;
8
9 return 0;
10 }