fpc/tests/webtbs/uw28766.pp
svenbarth 3afc18f277 Fix for Mantis #28766.
ncgrtti.pas, write_persistent_type_info:
  * do not generate RTTI information for generics

git-svn-id: trunk@31911 -
2015-10-02 13:06:51 +00:00

14 lines
127 B
ObjectPascal

unit uw28766;
{$mode delphi}
interface
type
TSimpleGeneric<A, B> = function(constref Value: A): B;
implementation
end.