9 lines
145 B
Plaintext
Vendored
9 lines
145 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
fun bar(x: Int, f: () -> Unit) {}
|
|
fun foo(a: Int, b: Int) = 2
|
|
|
|
fun test() {
|
|
bar(1) {
|
|
val a = foo(1, 2)
|
|
}
|
|
} |