leo/compiler/tests/array/slice_lower.leo

8 lines
207 B
Plaintext
Raw Normal View History

2020-12-10 01:42:15 +03:00
function main() {
let arr: [u32; 9] = [0, 1, 2, 3, 4, 5, 6, 7, 8];
let expected: [u32; 2] = [0, 1];
let actual = arr[..2]; // Should produce [0, 1]
console.assert(expected == actual);
}