mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 22:47:59 +02:00
13 lines
186 B
ObjectPascal
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.
|