fpc/tests/webtbs/tw12249.pp
paul 26032c3574 test: add { %norun } directive to tw12249
git-svn-id: trunk@16481 -
2010-11-30 08:14:31 +00:00

35 lines
302 B
ObjectPascal

{ %norun }
unit tw12249;
{$mode objfpc}{$H+}
interface
type
{ TG2 }
generic TG2<T> = class
public
destructor Destroy; override;
end;
implementation
{ TG2 }
destructor TG2.Destroy;
begin
inherited Destroy;
end;
procedure P;
type
T = specialize TG2<Integer>;
begin
end;
end.