leo/compiler/tests/array/slice.leo
2020-07-30 00:56:17 -07:00

7 lines
155 B
Plaintext

// `{from}..{to}` copies the elements of one array into another exclusively
function main(a: u8[3]) {
let b = [1u8; 4];
assert_eq!(a, b[0..3]);
}