11 lines
185 B
Kotlin
Vendored
11 lines
185 B
Kotlin
Vendored
// "Add parameter to function 'foo'" "true"
|
|
// ERROR: Too many arguments for public fun foo(): Unit defined in b
|
|
package a
|
|
|
|
import b.foo
|
|
|
|
class Bar
|
|
|
|
fun test() {
|
|
foo(<caret>Bar())
|
|
} |