mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00

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 -
41 lines
585 B
ObjectPascal
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.
|
|
|