mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00

+ added test * adjusted test tw9673 which should have never worked as is (what if TList would have been "of T" instead of "of byte"?) git-svn-id: trunk@36468 -
21 lines
215 B
ObjectPascal
21 lines
215 B
ObjectPascal
unit tw9673;
|
|
|
|
interface
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic Testclass<T> = class
|
|
|
|
type
|
|
TList = array of byte;
|
|
|
|
end;
|
|
|
|
var
|
|
b : specialize Testclass<LongInt>.TList;
|
|
|
|
|
|
implementation
|
|
begin
|
|
end.
|