mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
25 lines
368 B
ObjectPascal
25 lines
368 B
ObjectPascal
{$mode objfpc}{$H+}
|
|
|
|
uses SysUtils;
|
|
|
|
type
|
|
TMyMethod = procedure (A: Integer) of object;
|
|
|
|
TMyClass = class
|
|
class procedure Foo(A: Integer);
|
|
end;
|
|
|
|
class procedure TMyClass.Foo(A: Integer);
|
|
begin
|
|
Writeln('Got int ', A);
|
|
end;
|
|
|
|
procedure CallMethod(M: TMyMethod);
|
|
begin
|
|
M(123);
|
|
end;
|
|
|
|
begin
|
|
CallMethod({$ifdef FPC_OBJFPC} @ {$endif} TMyClass(nil).Foo);
|
|
end.
|