fpc/tests/webtbs/uw21015.pp
svenbarth bb00c76fe7 Fix for Mantis #21015 .
symdef.pas:
  * tobjectdef.find_implemented_interface: use equal_defs to ensure that equal specializations of interfaces are found as well
  * getparaencoding: use globals.CP_NONE instead of just CP_NONE, because defcmp contains a cp_none enum as well.

+ added test

git-svn-id: trunk@25609 -
2013-09-30 08:44:46 +00:00

17 lines
187 B
ObjectPascal

unit uw21015;
{$mode delphi}
interface
type
ITest<T> = interface
end;
TGenImpl<T> = class (TInterfacedObject,ITest<T>)
end;
IIntTest = Itest<Integer>;
implementation
end.