7 lines
144 B
Kotlin
Vendored
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>)
|
|
} |