Test-case for case-local name clashes
This commit is contained in:
parent
34b7533d86
commit
fb678481ce
1 changed files with 13 additions and 0 deletions
13
test/good/name_clash.ept
Normal file
13
test/good/name_clash.ept
Normal 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
|
Loading…
Reference in a new issue