fpc/tests/webtbf/tw9306c.pp
Jonas Maebe 288a538df5 * don't allow starting new virtual trees in TP-style objects + test
* fixed bug in whlpview.pas where such an new tree was unintentially
    started

git-svn-id: trunk@8422 -
2007-09-09 14:58:55 +00:00

22 lines
244 B
ObjectPascal

{ %fail }
type
tobj = object
function f: integer; virtual;
end;
tobj2 = object(tobj)
function f: string; virtual;
end;
function tobj.f: integer;
begin
end;
function tobj2.f:string;
begin
end;
begin
end.