mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
20 lines
249 B
ObjectPascal
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.
|