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