blob: 33f8f498f2254460bb9d89c411e0d6294bc9612f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.
|