fpc/tests/webtbs/uw14124.pp
paul 790f6b0a4b compiler: use delphi syntax for type, const and var section declarations in classes instead of fpc generics syntax
rtl: fix fgl to use the new syntax
tests: fix generics tests to use the new syntax

git-svn-id: trunk@15646 -
2010-07-27 00:59:32 +00:00

24 lines
339 B
ObjectPascal

unit uw14124;
{$mode objfpc}{$H+}
interface
type
generic TGenericType<TParamType> = class
private
var
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.