16 lines
197 B
Kotlin
Vendored
16 lines
197 B
Kotlin
Vendored
// FILE: Owner.java
|
|
|
|
public class Owner {
|
|
public String getText() {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
// FILE: User.kt
|
|
|
|
class User : Owner() {
|
|
fun foo() = text
|
|
|
|
override fun getText() = ""
|
|
}
|