19d1532dc7
#KT-14021 Fixed
7 lines
155 B
Kotlin
Vendored
7 lines
155 B
Kotlin
Vendored
// "Add parameter to function 'bar'" "true"
|
|
// DISABLE-ERRORS
|
|
fun bar(isObject: Boolean) {}
|
|
|
|
fun test(isObject: Boolean) {
|
|
bar(true, isObject<caret>)
|
|
} |