Allocate a new array of size

Property definitions

c $ CByteArray :: defaultinit
	# Allocate a new array of `size`
	init(size: Int) is old_style_init do
		native_array = new NativeCByteArray(size)
		super size
	end
lib/c/c.nit:162,2--166,4