Quickfix for "Expression cannot be invoked as a function" with no arguments to remove parentheses

#KT-10825 Fixed
This commit is contained in:
Dmitry Jemerov
2016-01-27 19:15:21 +01:00
parent 6d7e1c69dc
commit 7c59592212
8 changed files with 101 additions and 0 deletions
@@ -0,0 +1,6 @@
// "Change to property access" "true"
class A(val ff: String)
fun x() {
val y = A("").f<caret>f()
}