Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt4827.kt
T
2021-07-28 23:18:38 +03:00

18 lines
257 B
Kotlin
Vendored

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