Files
kotlin-fork/idea/idea-completion/testData/basic/common/override/AfterValKeyword.kt
T
2016-08-16 18:17:24 +03:00

24 lines
402 B
Kotlin
Vendored

interface I {
fun foo()
val someVal: Int
var someVar: Int
}
class Base1 {
protected open fun bar(){}
}
open class Base2 : Base1() {
}
class A : Base2(), I {
fun x() {
unresolved1(unresolved2)
}
override val <caret>
}
// EXIST: { itemText: "override val someVal: Int", lookupString: "someVal", tailText: null, typeText: "I", attributes: "bold" }
// NOTHING_ELSE