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

symsym.pas, tfieldvarsym: + add new field fieldvarsym which holds a reference to a tfieldvarsym if the static sym was created based on such a symbol + add necessary methods and code to correctly load from and store to PPU + add new constructor create_from_fieldvar symcreat.pas, make_field_static: * use new create_from_fieldvar constructor instead of the default one hlcgobj.pas, finalize_static_data: * check whether the static var is based on a generic's class var ppu.pas: * increase PPU version + added test git-svn-id: trunk@27466 -
17 lines
169 B
ObjectPascal
17 lines
169 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw19697;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
uw19697;
|
|
|
|
type
|
|
TSpecialisedClass = specialize TGenericClass<Integer>;
|
|
|
|
begin
|
|
TSpecialisedClass.Init;
|
|
end.
|
|
|