fpc/tests/tbs/ub0366.pp
2002-09-07 15:40:30 +00:00

22 lines
279 B
ObjectPascal

{$ifdef fpc}{$mode objfpc}{$endif}
unit ub0366;
interface
type
tc1=class
private
FHeight : integer;
public
constructor Create;
property Height : integer read FHeight write FHeight;
end;
implementation
constructor tc1.Create;
begin
FHeight:=0;
end;
end.