fpc/tests/webtbf/uw0856.pp
2000-11-30 22:38:14 +00:00

16 lines
191 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.