13 Aug
2019
13 Aug
'19
2:45 p.m.
define myvar = false;
function something () { if myvar then { return false; }
return true; }
protocol device DEVICE {
}
Could this be because of the new filter code or something else?
Hello
Thanks for bugreport. Yes, it is the new filter code, most likely it is a bug in handling of statically eliminable (constant-false) if statements without else branch.
Similar issue also happens for empty blocks:
if true then { }
What about the attached patch? Maria