Files
kotlin-fork/idea/idea-completion/testData/basic/common/boldOrGrayed/ImmediateMembers3.kt
T

15 lines
293 B
Kotlin
Vendored

trait T {
fun f(){}
}
fun foo(o: T) {
if (o is Runnable) {
o.<caret>
}
}
// EXIST: { itemText: "run", attributes: "bold" }
// EXIST: { itemText: "f", attributes: "bold" }
// EXIST: { itemText: "hashCode", attributes: "" }
// EXIST: { itemText: "equals", attributes: "" }