7 lines
141 B
Plaintext
Vendored
7 lines
141 B
Plaintext
Vendored
// HIGHLIGHT: INFORMATION
|
|
// FIX: Add 'c =' to argument
|
|
fun foo(a: Boolean, b: Int, c: Boolean) {}
|
|
|
|
fun test() {
|
|
foo(true, 0, c = true)
|
|
} |