Open
Description
If an action is created with an error, it will fail execution. If another action, correct, is then created and executed, the error for the wrong one is again shown. See the excerpt below for an example.
>>> var myVar: bool
>>> action amWrong = all { myVar' = true, myVar' = true }
>>> amWrong
effects error: <input>:1:18 - error: Multiple updates of variable(s): myVar
...
true
>>> action amRight = all { myVar' = true }
>>> amRight
effects error: <input>:1:18 - error: Multiple updates of variable(s): myVar
...
true