fpc/tests/webtbs/tw30706.pp
Jonas Maebe 233622157c * don't attempt to load the VMT of a niln when taking the address of a
class method (mantis #30706)

git-svn-id: trunk@34641 -
2016-10-07 16:41:32 +00:00

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.