fpc/tests/webtbs/tw30431.pp
2016-08-12 13:35:34 +00:00

23 lines
288 B
ObjectPascal

{ %opt=-vh -Seh }
{ %norun }
program NotUsedParamInAbstractMethodBug;
{$mode objfpc}{$H+}
type
{ TXMLWriter }
TXMLWriter = class(TObject)
private
protected
procedure Write(const Buffer; Count: Longint); virtual; abstract;
public
end;
var
x: TXMLWriter;
begin
end.