fpc/tests/webtbs/tw31945.pp
svenbarth dffe423b10 * fix for Mantis #31945: two fixes for nested routines inside generic methods
a) correctly determine whether token recording is required or not (nested routines of generic routines don't need it)
  b) correctly determine whether the trailing ";" needs to be parsed (nested routines of generic routines need to)

git-svn-id: trunk@36469 -
2017-06-09 15:46:10 +00:00

41 lines
585 B
ObjectPascal

{ Note: this is a vastly reduced variant of the example attached to bug report #31945 }
unit tw31945;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
type
{ GprAvgLvlTreeNode }
generic GprAvgLvlTreeNode<T> = class
public
procedure ConsistencyCheck; virtual;
end;
implementation
{ GprAvgLvlTreeNode }
procedure GprAvgLvlTreeNode.ConsistencyCheck;
procedure E(Msg: string);
begin
raise Exception.Create('GprAvgLvlTreeNode.ConsistencyCheck: '+Msg);
end;
begin
E('Hello World');
end;
var
t: specialize GprAvgLvlTreeNode<LongInt>;
initialization
end.