Test-case for case-local name clashes

This commit is contained in:
Adrien Guatto 2010-08-20 11:19:49 +02:00
parent 34b7533d86
commit fb678481ce

13
test/good/name_clash.ept Normal file
View file

@ -0,0 +1,13 @@
node main() returns (o : int)
let
automaton
state I
var x : int;
do x = 0; o = x;
until true then J
state J
var x : int;
do x = 1; o = x;
until true then I
end
tel