fpc/tests/webtbs/uw26922a.pp
svenbarth fa1bc0757d Fix for Mantis #26922.
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 -
2014-11-28 16:35:28 +00:00

29 lines
320 B
ObjectPascal

unit uw26922a;
{$mode objfpc}{$H+}
interface
uses
unit2_test;
Type
TTestAbstract = class
end;
TTest = class;
TTestObject = class(specialize TTestObjectAbstract<TTest>);
// Note: uncomment TTestAbstract when for recompilation
TTest = class//(TTestAbstract)
public
end;
implementation
end.