leo/compiler/tests/mutability/array_tuple_mut.leo

8 lines
213 B
Plaintext
Raw Normal View History

2020-12-11 22:21:46 +03:00
// Adding the `mut` keyword makes an array variable mutable.
function main() {
let mut a = [(1u32, 2u32)];
a[0u32].1 = 3u32;
console.assert(a[0u32].0 == 1u32);
console.assert(a[0u32].1 == 3u32);
}