98c3b39f7e
#KT-11534 In Progress
11 lines
242 B
Kotlin
Vendored
11 lines
242 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(): String?
|
|
internal abstract fun g(): String?
|
|
} |