fpc/tests/webtbs/uw21538.pp
svenbarth 2414c55ca0 Fix for Mantis #21538.
* 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 -
2012-09-25 10:25:30 +00:00

18 lines
150 B
ObjectPascal

unit uw21538;
{$IFDEF FPC}
{$MODE DELPHI}
{$ENDIF}
interface
type
TWrapper<T> = record end;
var
Z: TWrapper<Integer>;
implementation
end.