mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00

* pgenutil.pas, generate_specialization: Correctly change the ownership of extracted symbols and defs by calling ChangeOwner on the symbol/def which does all the magic of changing the owner and adding it to the corresponding list of the given symtable. This fixes Mantis #21550 * Adjusted tw21550.pp so that it enforces the generation of debug information which (as this was the option which caused the above mentioned bug to show) git-svn-id: trunk@21270 -
23 lines
293 B
ObjectPascal
23 lines
293 B
ObjectPascal
{%OPT=-gl}
|
|
|
|
program tw21550;
|
|
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
type
|
|
generic TEnumMetaClassTemplate<_TEnum> = class
|
|
private
|
|
FMetaInfo:pointer;static;
|
|
public
|
|
end;
|
|
|
|
TRowRenderMethod = (
|
|
rrmLines
|
|
);
|
|
TRowRenderMethodMeta = specialize TEnumMetaClassTemplate<TRowRenderMethod>;
|
|
|
|
begin
|
|
end.
|
|
|