mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:49:33 +02:00
14 lines
171 B
ObjectPascal
14 lines
171 B
ObjectPascal
{$mode objfpc}
|
|
var
|
|
i, j, c: Int32;
|
|
begin
|
|
c := 1;
|
|
for i := 0 to c do // SIGSEGV at runtime
|
|
try
|
|
j := i;
|
|
finally
|
|
if (j <> 0) then
|
|
j := 0;
|
|
end;
|
|
end.
|