Files
kotlin-fork/idea/idea-completion/testData/basic/common/primitiveCompletion/classFieldsAndFunctionsFromInheritor.kt
T

19 lines
194 B
Kotlin
Vendored

// FIR_COMPARISON
open class A {
fun aa() {}
val aaa = 10
fun test() {
<caret>
}
}
class B : A() {
fun test() {
<caret>
}
}
// EXIST: aa
// EXIST: aaa