mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
21 lines
201 B
ObjectPascal
21 lines
201 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
unit tw10425d;
|
|
|
|
interface
|
|
|
|
function test(var f: file of byte): longint;
|
|
|
|
implementation
|
|
|
|
|
|
function test(var f: file of byte): longint;
|
|
begin
|
|
end;
|
|
|
|
end.
|