Files
kotlin-fork/idea/testData/completion/smart/ImmediateExtensionMembers.kt
T
Valentin Kipyatkov 18b9e4a868 Added tests
2014-11-19 16:01:18 +03:00

12 lines
254 B
Kotlin

fun String.extFunForString(): Int = 0
fun Any.extFunForAny(): Int = 0
class C {
fun foo(): Int {
return "".<caret>
}
}
// EXIST: { itemText: "extFunForString", attributes: "bold" }
// EXIST: { itemText: "extFunForAny", attributes: "" }