fpc/tests/webtbf/uw0856.pp
2002-09-07 15:40:30 +00:00

17 lines
192 B
ObjectPascal

{$MODE objfpc}
unit uw0856;
interface
type
TMyClass = class
protected
constructor Create(x: Integer);
end;
implementation
constructor TMyClass.Create(x: Integer);
begin
end;
end.