d0f0b9e355
For internal members new names are generated, So, references to them from Java will be broken
10 lines
223 B
Kotlin
Vendored
10 lines
223 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()
|
|
}
|
|
|
|
abstract fun f(): String?
|
|
abstract fun g(): String?
|
|
} |