fpc/tests/webtbs/tw27424.pp
svenbarth 04534d5dcf Fix for Mantis #27424.
pgenutil.pas:
  * parse_generic_parameters: a ';' terminates a parameter group, so correctly adjust firstidx in that case

+ added test

git-svn-id: trunk@29685 -
2015-02-13 13:50:47 +00:00

23 lines
237 B
ObjectPascal

{ %NORUN }
program tw27424;
{$mode objfpc}
type
TType = class(TObject)
end;
generic TTest<T1; T2: TType> = class(TObject)
end;
TFoo = class(TType)
end;
TBar = class(specialize TTest<string, TFoo>)
end;
begin
end.