mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 21:29:43 +02:00

ncgrtti.pas, write_persistent_type_info: * do not generate RTTI information for generics git-svn-id: trunk@31911 -
14 lines
127 B
ObjectPascal
14 lines
127 B
ObjectPascal
unit uw28766;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
type
|
|
TSimpleGeneric<A, B> = function(constref Value: A): B;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|