pascalabcnet/TestSuite/gotobad0.pas
Mikhalkovich Stanislav 129cefd7e7 fix #2271
2020-06-25 00:03:11 +03:00

10 lines
103 B
ObjectPascal

// #2271
label 1;
begin
Arr(3).Select(b -> b);
if True then
goto 1;
1: Assert(1=1);
end.