fpc/tests/webtbs/tw1798.pp
2002-10-07 20:02:14 +00:00

27 lines
258 B
ObjectPascal

{$ifdef fpc}{$mode objfpc}{$endif}
type
TGraphicControl = class
end;
TButton = class
end;
TBitBtn = class(TButton)
private
published
end;
TSpeedButton = class(TGraphicControl)
published
end;
TMyButton = class(TBitBtn);
const MyConst = 1;
begin
end.