3cc3ad2b9e
https://github.com/JetBrains/kotlin/pull/978 (cherry picked from commit fdd5ba7)
9 lines
100 B
Plaintext
Vendored
9 lines
100 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar(l@ { it * 3 })
|
|
}
|
|
|
|
fun bar(b: (Int) -> Int) {
|
|
b(42)
|
|
}
|