Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/callableReferences/simpleNoReceiver.kt
T
2021-07-19 13:40:28 +03:00

8 lines
134 B
Kotlin
Vendored

fun foo(x: (String) -> Int) {}
fun bar(x: String): Int {<!NO_RETURN_IN_FUNCTION_WITH_BLOCK_BODY!>}<!>
fun main() {
foo(::bar)
}