Free used memory used by native_array.

Also set destroyed to true.

Property definitions

c $ CArray :: destroy
	# Free used memory used by `native_array`.
	#
	# Also set `destroyed` to true.
	fun destroy
	do
		if destroyed then return

		native_array.free
		destroyed = true
	end
lib/c/c.nit:55,2--64,4