fpc/tests/tbs/ub0421c.pp
2002-11-21 22:47:38 +00:00

20 lines
192 B
ObjectPascal

unit ub0421c;
interface
{$mode objfpc}
type
cl1=class
f1:longint;
constructor create;
end;
implementation
constructor cl1.create;
begin
f1 := 10;
end;
end.