7 lines
121 B
Kotlin
7 lines
121 B
Kotlin
class Base {
|
|
private val myFirst: String? = null
|
|
}
|
|
|
|
class Child : Base() {
|
|
private val mySecond: String? = null
|
|
} |