blob: 07a3cb56ff7ea559fb688080a03df9a89dbacf4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
unit tw9673;
interface
{$mode objfpc}
type
generic Testclass<T> = class
type
TList = array of byte;
end;
var
b : Testclass.TList;
implementation
begin
end.
|