mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
13 lines
175 B
Text
13 lines
175 B
Text
|
fun nothing() {
|
||
|
}
|
||
|
|
||
|
fun main() {
|
||
|
val x = 0;
|
||
|
return x.nothing();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr `nothing` has no parameters and can not be called as method
|
||
|
*/
|