mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:47:59 +02:00

* defcmp.pas, compare_defs_ext: use the new genericparas list to check whether two specializations of the same generic can be considered equal + added test git-svn-id: trunk@22454 -
20 lines
159 B
ObjectPascal
20 lines
159 B
ObjectPascal
unit tw21538;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE DELPHI}
|
|
{$ENDIF}
|
|
|
|
interface
|
|
|
|
uses uw21538;
|
|
|
|
var
|
|
ZZ: TWrapper<Integer>;
|
|
|
|
implementation
|
|
|
|
initialization
|
|
ZZ := Z;
|
|
|
|
end.
|