Files
kotlin-fork/idea/testData/quickfix/changeSignature/addParameterWithImport.before.Main.kt
T
2019-05-06 13:59:24 +03:00

12 lines
286 B
Kotlin
Vendored

// "Add parameter to function 'foo'" "true"
// ERROR: Too many arguments for public fun foo(): Unit defined in b in file addParameterWithImport.before.Dependency.kt
// COMPILER_ARGUMENTS: -XXLanguage:-NewInference
package a
import b.foo
class Bar
fun test() {
foo(<caret>Bar())
}