fpc/tests/webtbs/tw37305b.pp
2021-03-14 21:23:05 +00:00

13 lines
186 B
ObjectPascal

{$mode objfpc}
var
i, j: Int32;
begin
for i := 0 to 1 do // Error: Compilation raised exception internally
try
j := i;
finally
if (j <> 0) then
j := 0;
end;
end.