I've asked this question in <#C0922A726>, but it g...
# language-proposals
a
I've asked this question in #C0922A726, but it got lost apparently: Is there any reason not to support infix function calls with implicit
this
, as in the following example:
Copy code
class Foo {
    infix fun f(p: String) {}
}

fun g(body: Foo.() -> Any) {}

fun main(args: Array<String>) {
    g {
        f "foo"
        f "bar"
    }
}