Files
kotlin-fork/idea/testData/inspectionsLocal/booleanLiteralArgument/booleanLiteralNoPrevious.kt.after
T

7 lines
141 B
Plaintext
Vendored

// HIGHLIGHT: INFORMATION
// FIX: Add 'c =' to argument
fun foo(a: Boolean, b: Int, c: Boolean) {}
fun test() {
foo(true, 0, c = true)
}