7 lines
170 B
Kotlin
Vendored
7 lines
170 B
Kotlin
Vendored
// HIGHLIGHT: GENERIC_ERROR_OR_WARNING
|
|
// FIX: Add names to call arguments
|
|
fun foo(a: Boolean, b: Boolean, c: Boolean) {}
|
|
|
|
fun test() {
|
|
foo(true, true<caret>, true)
|
|
} |