Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt4827.kt
T
2015-05-12 19:43:17 +02:00

16 lines
249 B
Kotlin
Vendored

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