Files
kotlin-fork/idea/testData/intentions/addNameToArgument/kt11679.kt
T
Stanislav Erokhin ad285d5ca2 KT-11679 Fixed exception at ResolvedCallImpl.getArgumentMapping()
#KT-11679 Fixed
Also fixed EA-75913 EA-78908
2016-06-22 19:42:09 +03:00

8 lines
213 B
Kotlin
Vendored

// ERROR: Expression 'f' of type 'String' cannot be invoked as a function. The function 'invoke()' is not found
// IS_APPLICABLE: false
class Paren(val f: String) {
}
fun nonSimple() {
Paren("").f(<caret>6)
}