mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 04:40:56 +01:00
16 lines
191 B
ObjectPascal
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. |