polserver/testsuite/escript/scope/scope05.src
2015-12-19 02:31:08 +01:00

11 lines
216 B
Text

// Scope05 - make sure locals can't be declared twice in the same block.
// this should fail to compile
if (1)
var a;
a := 5;
print( "1. A=" + a );
var a;
a := 6;
print( "2. A=" + a );
endif