8 lines
119 B
Kotlin
Vendored
8 lines
119 B
Kotlin
Vendored
// PROBLEM: none
|
|
// DISABLE-ERRORS
|
|
fun foo(vararg a: Int, b: Boolean) {}
|
|
|
|
fun test() {
|
|
foo(1, 2, 3, true<caret>)
|
|
}
|