ref: 6f893e4ef65b27ec2241b8375a465bbf41e3622b 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] -> s.len }