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