blob: 9906d20305fa913bfa1515cd51b0b52447ef2cde [file]
class A {
companion object
}
val foo: Any.() -> Unit = {}
fun test() {
A.(foo)()
}
fun box(): String {
test()
return "OK"
}