mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-14 20:22:19 +00:00
11 lines
171 B
Text
11 lines
171 B
Text
|
global gg: (int, int);
|
||
|
|
||
|
fun main() {
|
||
|
[gg.0, gg.1, gg.0] = [0, 1, 0];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr one variable modified twice inside the same expression
|
||
|
*/
|