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

6 lines
87 B
Kotlin
Vendored

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