5319e9e761
#KT-5923 Fixed
9 lines
172 B
Kotlin
Vendored
9 lines
172 B
Kotlin
Vendored
// "Add parameter to function 'foo'" "true"
|
|
// DISABLE-ERRORS
|
|
fun test() {
|
|
Foo.foo()
|
|
Foo.foo(1)
|
|
Foo.foo(1, 2)
|
|
Foo.foo(1, 2, 3<caret>)
|
|
Foo.foo(4, 5, 6)
|
|
} |