Compiler Design 2023

Testcase c8 of Assignment 3:
/* 3 local variables: */
void foo()
{
int i;
bool b = true;
float pi = 3.1415;
}

c8