polserver/testsuite/escript/compiler2/compiler2-034-if-elseif-else-third-optimized.src
2020-08-13 15:26:09 +02:00

10 lines
168 B
Text

const a := 0;
const b := 0;
if (a)
print("incorrect - first path");
elseif (b)
print("incorrect - second path");
else
print("correct - third path");
endif