fpc/tests/webtbs/tw9827.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

29 lines
363 B
ObjectPascal

{$mode objfpc}
type
generic GList<_T> = class
private
var
i : integer;
function some_func(): integer;
end;
function GList.some_func(): integer;
begin
i := -1;
Result := -1;
end { some_func };
type
TA = specialize GList<integer>;
var
A : TA;
begin
A:=TA.Create;
if A.some_func<>-1 then
halt(1);
writeln('ok');
end.