mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 20:19:25 +02:00
15 lines
161 B
ObjectPascal
15 lines
161 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tb0297;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch functionreferences}
|
|
|
|
type
|
|
TTestProc = procedure;
|
|
TTestProcRef = reference to TTestProc;
|
|
|
|
begin
|
|
|
|
end.
|