mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
14 lines
227 B
Text
14 lines
227 B
Text
|
fun methodWith1Param(self: int, param: int) {
|
||
|
|
||
|
}
|
||
|
|
||
|
fun main() {
|
||
|
val x = 10;
|
||
|
x.methodWith1Param(2, "asdf");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr too many arguments in call to `methodWith1Param`, expected 1, have 2
|
||
|
*/
|