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