Files
kotlin-fork/idea/testData/quickfix/changeSignature/addParameterWithImport.after.kt
T
2015-09-08 02:05:41 +03:00

11 lines
185 B
Kotlin
Vendored

// "Add parameter to function 'foo'" "true"
// ERROR: Too many arguments for public fun foo(): kotlin.Unit defined in b
package a
import b.foo
class Bar
fun test() {
foo(Bar())
}