Copy/Paste: Add imports for non-qualifiable callable references

#KT-23407 Fixed
This commit is contained in:
Alexey Sedunov
2018-06-08 21:40:59 +03:00
parent 694997651a
commit f7cda61b08
23 changed files with 218 additions and 40 deletions
@@ -0,0 +1,11 @@
package completion.p23381
class A {
fun funReference() {}
}
class InputImpl {
fun context() {
<selection>A()::funReference</selection>
}
}