boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

00044.c (135B)


      1 struct T;
      2 
      3 struct T {
      4 	int x;
      5 };
      6 
      7 int
      8 main()
      9 {
     10 	struct T v;
     11 	{ struct T { int z; }; }
     12 	v.x = 2;
     13 	if(v.x != 2)
     14 		return 1;
     15 	return 0;
     16 }