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