Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/recursiveLocalFuns/recursiveFun.fir.kt
T

5 lines
69 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
fun foo() {
fun bar() = (fun() = bar())
}