program ideone;

type T = record
	items: array of T;
end;

var x: T;

begin
	WriteLn(Length(x.items));
end.