fpc/tests/webtbs/tw41077.pp

22 lines
235 B
ObjectPascal

{ %wpoparas=optvmts }
{ %wpopasses=1 }
program test;
type
PMyObj=^TMyObj;
TMyObj = object
constructor init;
procedure dummy;virtual;abstract;
end;
constructor TMyObj.init;
begin
end;
begin
PMyObj(nil)^.init;
end.