mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-31 09:08:01 +02:00
22 lines
190 B
ObjectPascal
22 lines
190 B
ObjectPascal
unit uanonfunc20;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
type
|
|
tbase = class
|
|
protected
|
|
function x: longint;
|
|
end;
|
|
|
|
implementation
|
|
|
|
function tbase.x: longint;
|
|
begin
|
|
result := 123;
|
|
end;
|
|
|
|
end.
|
|
|