mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00

Also adjusted test for report 20836 (removed unneeded units and the {$R ...} directive completely and added a "%NORUN" modifier). git-svn-id: trunk@19817 -
21 lines
242 B
Plaintext
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.
|