mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00

pgenutil.pas, specialization_init: * don't push the localsymtable if the unit does not have one available + added test (needs manual execution though... :/ ) git-svn-id: trunk@29172 -
21 lines
183 B
ObjectPascal
21 lines
183 B
ObjectPascal
unit uw26922b;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
Type
|
|
generic TTestObjectAbstract<T> = class
|
|
private
|
|
var
|
|
FTest : T;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uw26922a;
|
|
|
|
end.
|
|
|