mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-14 12:12:21 +00:00
It works both for reading and writing: > var t = (1, 2); > t.0; // 1 > t.0 = 5; > t; // (5, 2) It also works for typed/untyped tuples, producing INDEX and SETINDEX. Global tensors and tuples works. Nesting `t.0.1.2` works. `mutate` works. Even mixing tuples inside tensors inside a global for writing works.
11 lines
259 B
Text
11 lines
259 B
Text
fun incThree(mutate a: int, mutate b: int, mutate c: int) {}
|
|
|
|
fun main() {
|
|
var c = [[[1, 2]]];
|
|
incThree(mutate c.0.0.0, mutate c.0.0.1, mutate c.0.0.0);
|
|
}
|
|
|
|
/**
|
|
@compilation_should_fail
|
|
@stderr one variable modified twice inside the same expression
|
|
*/
|