mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
22 lines
414 B
ObjectPascal
22 lines
414 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 3433 }
|
|
{ Submitted by "Mattias Gaertner" on 2004-12-06 }
|
|
{ e-mail: mattias@freepascal.org }
|
|
program CompareFunctionTypes;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
TMyFunction = function(Item: Pointer): integer of object;
|
|
|
|
procedure DoSomething(const Func1, Func2: TMyFunction);
|
|
begin
|
|
if Func1=Func2 then exit;
|
|
end;
|
|
|
|
begin
|
|
DoSomething(nil,nil);
|
|
end.
|