mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 07:58:04 +02:00
11 lines
164 B
ObjectPascal
11 lines
164 B
ObjectPascal
{$ifdef fpc}{$mode delphi}{$endif}
|
|
|
|
type
|
|
c=class
|
|
function Byte: Byte; virtual; abstract;
|
|
function P(b: Byte):boolean; virtual; abstract;
|
|
end;
|
|
|
|
begin
|
|
end.
|