Compiler Design 2023

Testcase c18 of Assignment 4:
1
2
3
4
5
6
7
void foo(float a) {}
void foo1(int a) {}

int main() {
  foo(1);
  foo1(2.0);
}

c18