mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
10 lines
123 B
Text
10 lines
123 B
Text
|
fun main() {
|
||
|
var a = 1;
|
||
|
(a += 1) += 2;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr assignment can not be used as lvalue
|
||
|
*/
|