mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-20 04:51:39 +02:00
16 lines
268 B
ObjectPascal
16 lines
268 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 3173 }
|
|
{ Submitted by "Dominik Zablotny" on 2004-06-18 }
|
|
{ e-mail: dominz@wp.pl }
|
|
program test;
|
|
{$ifdef fpc}{$mode delphi}{$endif}
|
|
var
|
|
p: procedure of object;
|
|
|
|
function f:pointer;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
@p := f;
|
|
end.
|