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

6 lines
74 B
Kotlin
Vendored

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