d0f0b9e355
For internal members new names are generated, So, references to them from Java will be broken
6 lines
127 B
Kotlin
Vendored
6 lines
127 B
Kotlin
Vendored
internal abstract class A {
|
|
abstract fun callme()
|
|
fun callmetoo() {
|
|
print("This is a concrete method.")
|
|
}
|
|
} |