mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
14 lines
249 B
ObjectPascal
14 lines
249 B
ObjectPascal
{ %fail }
|
|
|
|
unit tw2357;
|
|
interface
|
|
type
|
|
TQ = class(TObject)
|
|
public
|
|
procedure DoSome(const X); virtual; abstract;
|
|
function GetSome : integer; virtual; overload;
|
|
function GetSome : string; virtual; overload; abstract;
|
|
end;
|
|
implementation
|
|
end.
|