ref: d159e8c6b102a1c5d9a7625ecc8176f08290c259 dir: /test/slicelen.myr/
use std /* 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] std.exit(s.len) }