mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
216 B
Text
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
|