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