no message

This commit is contained in:
florian 2004-11-03 10:30:48 +00:00
parent ac7f9351f0
commit 741f42c3b0

17
tests/test/tobject4.pp Normal file
View File

@ -0,0 +1,17 @@
{$mode objfpc}
type
to1 = class
a1 : array[0..100] of byte;
s1 : ansistring;
a2 : array[0..100] of byte;
s2 : ansistring;
s3 : ansistring;
end;
var
o1 : to1;
begin
o1:=to1.create;
o1.destroy;
end.