7 lines
178 B
Plaintext
Vendored
7 lines
178 B
Plaintext
Vendored
// HIGHLIGHT: GENERIC_ERROR_OR_WARNING
|
|
// FIX: Add names to boolean arguments
|
|
fun foo(a: Boolean, b: Boolean, c: Boolean) {}
|
|
|
|
fun test() {
|
|
foo(a = true, b = true, c = true)
|
|
} |