mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
13 lines
185 B
Text
13 lines
185 B
Text
|
fun with2Params(x: int, y: int) {
|
||
|
|
||
|
}
|
||
|
|
||
|
fun main() {
|
||
|
return with2Params(1);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr too few arguments in call to `with2Params`, expected 2, have 1
|
||
|
*/
|