mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 01:08:16 +02:00
13 lines
153 B
ObjectPascal
13 lines
153 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode macpas}
|
|
|
|
procedure Example;
|
|
|
|
begin
|
|
return false; // compiler catches this, but crashes instead of reporting an error
|
|
end;
|
|
|
|
begin
|
|
end.
|