pascalabcnet/TestSuite/gotobad2.pas

16 lines
180 B
ObjectPascal
Raw Normal View History

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