fpc/tests/webtbs/tw9673.pp
tom_at_work 6c49a28544 * fixed tw9673
git-svn-id: trunk@8597 -
2007-09-21 17:01:39 +00:00

20 lines
194 B
ObjectPascal

unit tw9673;
interface
{$mode objfpc}
type
generic Testclass<T> = class
type
TList = array of byte;
end;
var
b : Testclass.TList;
implementation
begin
end.