fpc/tests/webtbf/tw7752.pp
Jonas Maebe d73582cb85 * removed svn:executable properties
git-svn-id: trunk@8314 -
2007-08-26 19:24:36 +00:00

27 lines
411 B
ObjectPascal

{ %fail }
{$mode objfpc}
unit tw7752;
interface
type generic TMapNode<_Key,_Value> = class(TObject)
key: _Key;
value: _Value;
end;
generic TMap<_Key,_Value> = class(TObject)
private
public
procedure Insert(x: TMapNode);
end;
implementation
procedure TMap.Insert(x: TMapNode);
procedure TreeInsert(z: TMapNode);
var x,y: TMapNode;
begin
end;
begin
end;
end.