Compiler Design 2023

Testcase c31 of Assignment 4:
1
2
3
4
5
6
7
8
int foo(int x[2]){
return 33 ;
}

int main() {
   int a[1];
   foo(a);
}

c31