mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:47:56 +02:00
18 lines
206 B
ObjectPascal
18 lines
206 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tfuncref11;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$modeswitch functionreferences}
|
|
|
|
uses
|
|
ufuncref10;
|
|
|
|
var
|
|
l: LongInt;
|
|
i: ITestFunc3;
|
|
begin
|
|
{ only the String Invoke is available }
|
|
l := i();
|
|
end.
|