mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
14 lines
146 B
Text
14 lines
146 B
Text
|
fun inc(x: int) {
|
||
|
return x + 1;
|
||
|
}
|
||
|
|
||
|
fun main() {
|
||
|
return inc(_);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr rvalue expected
|
||
|
@stderr inc(_)
|
||
|
*/
|