9 lines
111 B
Plaintext
Vendored
9 lines
111 B
Plaintext
Vendored
fun test() {
|
|
class Test()
|
|
|
|
operator fun Test.invoke(): Unit = Unit
|
|
|
|
val test = Test()
|
|
test()
|
|
}
|