12 lines
174 B
Plaintext
Vendored
12 lines
174 B
Plaintext
Vendored
// WITH_DEFAULT_VALUE: false
|
|
fun foo(a: Int) {
|
|
|
|
}
|
|
|
|
fun bar(a: Int, __dummyTestFun__: (Int) -> Unit) {
|
|
__dummyTestFun__(a)
|
|
}
|
|
|
|
fun test() {
|
|
bar(1) { a -> foo(a + 1) }
|
|
} |