Files
kotlin-fork/idea/testData/inspectionsLocal/booleanLiteralArgument/vararg.kt
T
2019-01-24 09:40:21 +03:00

6 lines
95 B
Kotlin
Vendored

// PROBLEM: none
fun foo(vararg b: Boolean) {}
fun test() {
foo(true, true, true<caret>)
}