mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:28:05 +02:00
21 lines
187 B
ObjectPascal
21 lines
187 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
unit tw10425c;
|
|
|
|
interface
|
|
|
|
function test(p: string[4]): longint;
|
|
|
|
implementation
|
|
|
|
|
|
function test(p: string[4]): longint;
|
|
begin
|
|
end;
|
|
|
|
end.
|