fpc/tests/webtbs/uw22428.pp
svenbarth 54c1e638ad Fix for Mantis #22428.
* pgenutil.pas, generate_specialization:
  * return a generrordef instead of Nil when returning because of an error
  * always check "genname" for a generic count string as a mode ObjFPC generic specialized in a mode Delphi unit will already contain a "$X" suffix and only symname will be set.
+ add (corrected) test

git-svn-id: trunk@22462 -
2012-09-26 15:03:37 +00:00

21 lines
215 B
ObjectPascal

unit uw22428;
{$MODE OBJFPC}
{$modeswitch advancedrecords}
interface
type
generic TWrapper<T> = record
class procedure Test; static;
end;
implementation
class procedure TWrapper.Test;
begin
end;
end.