Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt9384.fir.kt
T

13 lines
261 B
Kotlin
Vendored

// FIR_IDE_IGNORE
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun main(args: Array<String>) {
fun f() = run {
private class C {
private fun foo() {
f().<!UNRESOLVED_REFERENCE!>foo<!>();
}
}
C()
}
}