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

18 lines
345 B
Kotlin
Vendored

fun C.extFunForC(){}
fun T.extFunForT(){}
fun Any.extFunForAny(){}
open class C {
fun foo() {
if (this is T) {
<caret>
}
}
}
interface T
// EXIST: { itemText: "extFunForT", attributes: "bold" }
// EXIST: { itemText: "extFunForC", attributes: "bold" }
// EXIST: { itemText: "extFunForAny", attributes: "" }