552359ce03
#KT-7443 Fixed
12 lines
225 B
Kotlin
Vendored
12 lines
225 B
Kotlin
Vendored
internal abstract class C {
|
|
fun foo() {
|
|
val s1 = f()!!
|
|
|
|
val s2 = g() ?: error("g should not return null")
|
|
val h = s2.hashCode()
|
|
}
|
|
|
|
internal abstract fun f()
|
|
internal abstract fun g()
|
|
}
|