Quick-fix to add type to LHS of incorrect callable references
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Add type to left-hand side" "true"
|
||||
package foo.bar
|
||||
|
||||
class A {
|
||||
fun foo() {}
|
||||
|
||||
fun bar() = ::fo<caret>o
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type to left-hand side" "true"
|
||||
package foo.bar
|
||||
|
||||
class A {
|
||||
fun foo() {}
|
||||
|
||||
fun bar() = A::foo
|
||||
}
|
||||
Reference in New Issue
Block a user