Files
2020-04-02 12:10:50 +03:00

8 lines
83 B
Kotlin
Vendored

object Bar {
operator fun invoke(x: String) {}
}
fun foo() {
Bar("asd")
}