16 lines
197 B
Kotlin
Vendored
16 lines
197 B
Kotlin
Vendored
public open class Z {
|
|
fun zzz() {
|
|
|
|
}
|
|
}
|
|
|
|
// SIBLING:
|
|
public class A(): Z() {
|
|
var a: Int = 1
|
|
|
|
fun foo(): Int {
|
|
<selection>super.zzz()
|
|
return a + 1</selection>
|
|
}
|
|
}
|