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

17 lines
232 B
Kotlin
Vendored

// KT-4827 UOE at PackageType.throwException()
// EA-53605
public interface TestInterface {
}
class C {
inner class I {
}
}
fun f() {
<!UNRESOLVED_REFERENCE!>TestInterface<!>()
C.<!UNRESOLVED_REFERENCE!>I<!>()
}