0211-enum.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
---
0211-enum.c (74B)
---
1 int main()
2 {
3 for (struct {enum {A, B} a;} a = {0}; 0;)
4 ;
5
6 return 0;
7 }