blob: ac1a4ddf663b36311c059d71583a99deb389922e [file] [log] [blame]
// IS_APPLICABLE: true
fun foo() {
bar(l@ { it * 3 })
}
fun bar(b: (Int) -> Int) {
b(42)
}