Compiler Design 2025

Testcase c23 of Assignment 4:
1
2
3
4
int main(){
bool a;
a = !(a || true);
}

c23