ref: 1c1fd2f09c278e2f105abeadc5d5f0d2017c655a 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) }