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

7 lines
144 B
Kotlin
Vendored

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