Add "add type to callable reference LHS" quickfix to Code Cleanup

This commit is contained in:
Alexander Udalov
2015-10-05 09:18:48 +03:00
parent b47982a0a6
commit d83ed11cd9
4 changed files with 15 additions and 2 deletions
+6
View File
@@ -54,3 +54,9 @@ fun foo() {
B() + B()
B() + B()
}
class C {
fun foo() {}
fun bar() = ::foo
}
+6
View File
@@ -53,3 +53,9 @@ fun foo() {
B() + B()
B() + B()
}
class C {
fun foo() {}
fun bar() = C::foo
}