8 lines
157 B
Kotlin
Vendored
8 lines
157 B
Kotlin
Vendored
// "Add parameter to function 'foo'" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
fun foo(x: Int) {
|
|
foo(,);
|
|
foo(1);
|
|
foo(2, java.util.LinkedHashSet<Int>()<caret>);
|
|
} |