mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
10 lines
170 B
Text
10 lines
170 B
Text
|
fun main() {
|
||
|
var ab = (1, 2);
|
||
|
(ab, ab.1) = ((2, 3), 4);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr one variable both modified and read inside the same expression
|
||
|
*/
|