955bfd6e7b
This commit also refactors relevant intentions & inspections, like "add name to argument", "add names to call arguments", "unnamed boolean literal argument" #KT-30622 Fixed
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<caret>, true, true)
|
|
} |