mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 07:23:39 +02:00
17 lines
269 B
ObjectPascal
17 lines
269 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.
|
|
|