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