fpc/tests/webtbs/uw14124.pp
2010-01-08 18:01:28 +00:00

23 lines
331 B
ObjectPascal

unit uw14124;
{$mode objfpc}{$H+}
interface
type
generic TGenericType<TParamType> = class
var private
FDefault: TParamType; static;
F: TParamType;
public
procedure P;
end;
implementation
procedure TGenericType.P;
begin
F := FDefault; // <====== unit1.pas(21,16) Fatal: Internal error 200108121
end;
end.