fpc/tests/tbs/ub0421c.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

20 lines
191 B
ObjectPascal

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