mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-20 22:51:30 +01: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.
|