fpc/tests/webtbs/uw27320.defaults.pp
svenbarth 943a094683 Fix for Mantis #27320.
symdef.pas, tprocdef:
  * defaultmangledname: don't use the potentially unassigned hp, but use - as intended - returndef if it is set (analog to the non-CRC part)

+ added test

git-svn-id: trunk@29537 -
2015-01-23 16:47:23 +00:00

24 lines
306 B
ObjectPascal

unit uw27320.Defaults;
{$MODE DELPHI}
interface
type
IEqualityComparer<T> = interface
end;
TEqualityComparer<T> = class
public
class function Default: IEqualityComparer<T>; static;
end;
implementation
class function TEqualityComparer<T>.Default: IEqualityComparer<T>;
begin
end;
end.