mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
19 lines
199 B
ObjectPascal
19 lines
199 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
type
|
|
tc = class
|
|
function getx(i: longint): longint;
|
|
default: longint;
|
|
end;
|
|
|
|
function tc.getx(i: longint): longint;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|