mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
10 lines
122 B
Text
10 lines
122 B
Text
|
fun main() {
|
||
|
var x = 1;
|
||
|
x += (var y = 2);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr expected <expression>, got `var`
|
||
|
*/
|