blob: 3cdfd8c0cd2be253333789b8361cd095dcec18ec [file] [log] [blame]
fun (() -> Int).foo(x: Int, y: Int): Int {
return x + this()
}
fun bar() {
{
3
}.foo(1, 2)
}