Compiler Design 2023

Testcase c15.2 of Assignment 4:
1
2
3
4
int main() {
  int a;
  for(a=0;1;a=a+1) return 1;
}

c15.2