Revert "Add predictability in CType initialization."
[tinycc.git] / tests2 / 48_nested_break.c
blob5bc5ba47ff688885c94a9b9ef67e9d51a97eba06
1 #include <stdio.h>
3 int main()
5 int a;
6 char b;
8 a = 0;
9 while (a < 2)
11 printf("%d", a++);
12 break;
14 b = 'A';
15 while (b < 'C')
17 printf("%c", b++);
19 printf("e");
21 printf("\n");
23 return 0;
26 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/