uw0856.pp 191 B

12345678910111213141516
  1. {$MODE objfpc}
  2. unit uw0856;
  3. interface
  4. type
  5. TMyClass = class
  6. protected
  7. constructor Create(x: Integer);
  8. end;
  9. implementation
  10. constructor TMyClass.Create(x: Integer);
  11. begin
  12. end;
  13. end.