fpc/tests/webtbs/tw31714.pp
florian 3db2794598 + add test for #31714 which is already fixed
git-svn-id: trunk@45859 -
2020-07-25 21:08:58 +00:00

20 lines
295 B
ObjectPascal

{$goto on}
procedure DoIt; inline;
{IDE crashes when procedure declared inline. It does not matter whether
goto is enabled or not}
var n: integer;
label l1;
begin
n := 0;
l1:
if n < 100 then begin
inc (n);
goto l1;
end;
writeln (n);
end;
begin
DoIt;
end.