Compiler Design 2023

Testcase c35 of Assignment 3:
// Each multi-variable declaration is treated as if the
// variables had been decleared by distinct statements.

void main() {
int a;
int b;
int c;
int d;
}

c35