59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
13 lines
119 B
Kotlin
13 lines
119 B
Kotlin
class A {
|
|
default object {
|
|
|
|
}
|
|
}
|
|
|
|
fun use(vararg a: Any?) = a
|
|
|
|
fun test() {
|
|
use(use(A, null).toString())
|
|
}
|
|
|