mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 18:47:52 +02:00
14 lines
129 B
ObjectPascal
14 lines
129 B
ObjectPascal
program bug;
|
|
|
|
{$H+}
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
function GetString: String;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
WriteLn(Format('%s', [GetString()]));
|
|
end. |