Compiler Design 2023

Testcase c34 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, c;
int d;
}

c34