Quick-fix to add type to LHS of incorrect callable references

This commit is contained in:
Alexander Udalov
2015-10-02 22:39:57 +03:00
parent 661f4efc68
commit 012a2971ff
6 changed files with 98 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Add type to left-hand side" "true"
package foo.bar
class A {
fun foo() {}
fun bar() = ::fo<caret>o
}
@@ -0,0 +1,8 @@
// "Add type to left-hand side" "true"
package foo.bar
class A {
fun foo() {}
fun bar() = A::foo
}