polserver/testsuite/escript/compiler2/compiler2-088-local-variable-shadowing.src
2020-08-13 15:26:09 +02:00

11 lines
235 B
Text

// Make sure locals in sub-blocks can override other locals
program foo()
var a := 5;
print( "1. A=" + a );
if (2)
var a;
a := 7;
print( "2. A=" + a );
endif
print( "3. A=" + a );
endprogram