6 lines
119 B
Plaintext
Vendored
6 lines
119 B
Plaintext
Vendored
// ALLOW_MULTIPLE_EXPRESSIONS
|
|
fun bar(x: (Int) -> String) = x(1)
|
|
fun foo() {
|
|
val bar = bar() { y: Int -> "abc" }
|
|
}
|