fpc/tests/webtbf/tw2357.pp
2003-03-17 19:26:34 +00:00

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.