6 lines
231 B
Kotlin
6 lines
231 B
Kotlin
// "class org.jetbrains.jet.plugin.quickfix.AddFunctionParametersFix" "false"
|
|
// ERROR: Too many arguments for public fun jet.Any?.equals(other: jet.Any?): jet.Boolean defined in jet
|
|
|
|
fun f(d: Any) {
|
|
d.equals("a", <caret>"b")
|
|
} |