blob: cdc96699980c9cf6af4ed45673a4321429b79043 [file] [log] [blame]
// IS_APPLICABLE: true
fun foo() {
bar({ it })
}
fun bar(a: (Int) -> Int): Int {
return a(1)
}