8 lines
83 B
Kotlin
Vendored
8 lines
83 B
Kotlin
Vendored
object Bar {
|
|
operator fun invoke(x: String) {}
|
|
}
|
|
|
|
fun foo() {
|
|
Bar("asd")
|
|
}
|