mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
11 lines
134 B
Kotlin
Vendored
11 lines
134 B
Kotlin
Vendored
class Derived: Base() {
|
|
fun test() {
|
|
super.<caret>test()
|
|
}
|
|
}
|
|
|
|
open class Base {
|
|
fun test() {}
|
|
}
|
|
|
|
// EXPECTED: null |