fpc/tests/webtbf/tw13971a.pp
Jonas Maebe ae6200ce72 + tests forgotten to commit as part of r13334
git-svn-id: trunk@13617 -
2009-08-30 08:37:53 +00:00

20 lines
249 B
ObjectPascal

{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
tc = class
function getx(i: longint): longint;
property prop[i: longint]: longint read getx;
default: longint;
end;
function tc.getx(i: longint): longint;
begin
end;
begin
end.