0108-bug.c (85B)
1 int 2 main() 3 { 4 int i; 5 6 for(i = 0; i < 10; i++) 7 if (!i) 8 continue; 9 10 return 0; 11 }