fpc/tests/webtbf/tw36014.pp
2020-08-03 21:53:24 +00:00

31 lines
246 B
ObjectPascal

{ %FAIL }
program tw36014;
{$mode objfpc}
type
{ TTest }
TTest = class
public
procedure Test;
end;
var
T: TTest;
{ TTest }
procedure TTest.Test;
begin
end;
begin
T := TTest.Create;
T.specialize Test<T>;
T.Free;
end.