fpc/tests/webtbf/bug856u.pp
2000-03-20 13:22:24 +00:00

16 lines
192 B
ObjectPascal

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