pascalabcnet/TestSuite/gotobad1.pas

14 lines
136 B
ObjectPascal
Raw Permalink Normal View History

2020-06-25 00:03:11 +03:00
// #2271
procedure p;
label 1;
begin
Arr(3).Select(b -> b);
if True then
goto 1;
1: Assert(1=1);
end;
begin
p;
end.