18 lines
257 B
Kotlin
Vendored
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<!>()
|
|
}
|