shithub: mc

ref: 9ac459c0cc5beac10be8ba3310af6edd89b1849c
dir: /test/slicelen.myr/

View raw version
/* checks that taking incomplete slices calculates the length correctly.
* should exit with 5. */
const main = {
	var a : int[8]
	var s

	s = a[1:6]
	-> s.len
}