Immediate extension members are correctly detected for platform types
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
fun String.extFunForString(){}
|
||||
fun Any.extFunForAny(){}
|
||||
fun String?.extFunForStringNullable(){}
|
||||
|
||||
class C {
|
||||
fun foo() {
|
||||
System.getProperty("a").<caret>
|
||||
}
|
||||
}
|
||||
|
||||
// EXIST: { itemText: "extFunForString", attributes: "bold" }
|
||||
// EXIST: { itemText: "extFunForAny", attributes: "" }
|
||||
// EXIST: { itemText: "extFunForStringNullable", attributes: "bold" }
|
||||
// EXIST: { itemText: "charAt", attributes: "bold" }
|
||||
Reference in New Issue
Block a user