14 lines
167 B
Kotlin
Vendored
14 lines
167 B
Kotlin
Vendored
// FILE: Base.java
|
|
|
|
public class Base {
|
|
public int value = 0;
|
|
}
|
|
|
|
// FILE: Derived.kt
|
|
|
|
class Derived : Base() {
|
|
fun getValue() = value
|
|
|
|
fun foo() = value
|
|
}
|