mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +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 -
18 lines
150 B
ObjectPascal
18 lines
150 B
ObjectPascal
unit uw21538;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE DELPHI}
|
|
{$ENDIF}
|
|
|
|
interface
|
|
|
|
type
|
|
TWrapper<T> = record end;
|
|
|
|
var
|
|
Z: TWrapper<Integer>;
|
|
|
|
implementation
|
|
|
|
end.
|