summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw10210.pp
blob: 26d31d080d9f150c293a1155bac3e6f41e921def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ %norun }

unit tw10210;
{$mode objfpc}
interface

type
  generic TSomeList<TElem> = class
  end;

  TSomeClassList = specialize TSomeList<integer>;

implementation

begin
end.