Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/recursiveLocalFuns/recursiveFun.fir.kt
T
2023-07-31 17:38:46 +00:00

4 lines
95 B
Kotlin
Vendored

fun foo() {
fun bar() = (fun() = <!TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>bar()<!>)
}