fpc/tests/webtbs/uw26922b.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

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.