8 lines
117 B
Plaintext
8 lines
117 B
Plaintext
fun test() {
|
|
class Test {
|
|
fun plus(vararg a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
+test
|
|
}
|