var b = new Bytes.empty
assert b.to_s == ""

Property definitions

core $ Bytes :: empty
	#     var b = new Bytes.empty
	#     assert b.to_s == ""
	init empty do
		var ns = new CString(0)
		init(ns, 0, 0)
	end
lib/core/bytes.nit:256,2--261,4