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