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

6 lines
115 B
Kotlin
Vendored

// PROBLEM: none
fun foo(a: Boolean, b: Boolean, c: Int) {}
fun test(b: Boolean) {
foo(true, true, 1<caret>)
}