blob: c3d18b682819c32c229ead4fd9edac23ac0917bc [file] [log] [blame]
void foo(int x)
{
if (x > 3)
{;}
else
bar();
x = 9;
}
main()
{
int j;
foo(j);
return j;
}