leo/compiler/tests/mutability/array_tuple_mut.leo
2020-12-16 15:00:45 -08:00

8 lines
213 B
Plaintext

// 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);
}