// FLOW: OUT fun test() { val x = foo { 1 } } fun foo(callback: () -> Int): Int { return callback.invoke() }