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