Fixed completion for extension function after removing members for implicit receiver from scope.
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
class A {
|
||||
fun String.foo() {}
|
||||
}
|
||||
|
||||
fun Any.test() { // see KT-8865 Member extension after this smart cast not working
|
||||
if (this is A) {
|
||||
"".<caret>
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// EXIST: foo
|
||||
Reference in New Issue
Block a user