7 lines
164 B
Kotlin
Vendored
7 lines
164 B
Kotlin
Vendored
// HIGHLIGHT: GENERIC_ERROR_OR_WARNING
|
|
// FIX: Add 'c =' to argument
|
|
fun foo(a: Boolean, b: Boolean, c: Boolean) {}
|
|
|
|
fun test() {
|
|
foo(true, true, true<caret>)
|
|
} |