Compiler Design 2023

Testcase c26 of Assignment 4:
1
2
3
4
5
6
7
8
bool foo ()
{
  return true;
}

int main() {
  return foo();
}

c26