Files
kotlin-fork/idea/testData/quickfix/changeSignature/addFunctionParameterLongNameRuntime.kt.after
T
Alexey Sedunov 6ff955b66c Change Signature: Implement improved call processing algorithm
#KT-8953 Fixed
 #KT-9525 Fixed
2015-11-10 16:47:48 +03:00

10 lines
260 B
Plaintext
Vendored

import java.util.LinkedHashSet
// "Add parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(x: Int, linkedHashSet: LinkedHashSet<Int>) {
foo(, LinkedHashSet<Int>());
foo(1, LinkedHashSet<Int>());
foo(2, java.util.LinkedHashSet<Int>());
}