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

10 lines
158 B
Text

// Scope02 - make sure locals go out of scope
// this should fail to compile.
if (1)
var a;
a := 5;
print( "A=" + a );
endif
print( "A=" + a );