fpc/tests/webtbs/tw9673.pp
svenbarth eb9b4fb71f * fix for Mantis #31973: resolve dummy symbols earlier and print a nice error message if a generic dummy could not be resolved to an ordinary symbol
+ 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 -
2017-06-09 14:41:26 +00:00

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.