tests: cleanup
[tinycc.git] / tests / tests2 / 44_scoped_declarations.c
blobf38664fc5b5af3eb3360bf5533bbe547eb1278e2
1 #include <stdio.h>
3 int main()
5 int a;
7 for (a = 0; a < 2; a++)
9 int b = a;
12 printf("it's all good\n");
14 return 0;
17 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/