fpc/tests/webtbs/tw19500.pp
svenbarth 5ffba57b51 Add tests for resolved generic bug reports.
Also adjusted test for report 20836 (removed unneeded units and the {$R ...} directive completely and added a "%NORUN" modifier).

git-svn-id: trunk@19817 -
2011-12-11 15:49:22 +00:00

21 lines
242 B
Plaintext

{ %NORUN }
{$MODE OBJFPC} { -*- text -*- }
program tw19500;
type
generic TFoo <T> = class
type
TBar = class
function Baz(): T;
end;
end;
function TFoo.TBar.Baz(): T;
begin
Result := nil;
end;
begin
end.