mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 10:20:21 +02:00
20 lines
194 B
ObjectPascal
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. |