blob: 1cbecf5269250d94416156cf3ab7cdf1f1515c3d [file] [log] [blame]
/* example5.input */
{
if (variable) { a = b ; }
while (10) {
if (2) { b = 10 ; }
if (x) { c = x ; } else { d = 10 ; }
}
variable = 42;
if (variable) { a = b ; } else { }
}