Files
kotlin-fork/idea/idea-completion/testData/basic/common/boldOrGrayed/ImmediateMembers3.kt
T
2015-09-22 15:00:24 +02:00

15 lines
297 B
Kotlin
Vendored

interface 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: "" }