mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 00:28:23 +02:00
17 lines
192 B
ObjectPascal
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.
|