8 lines
118 B
Kotlin
8 lines
118 B
Kotlin
fun test() {
|
|
class Test {
|
|
fun plus(): Test = Test()
|
|
}
|
|
val test = Test()
|
|
+test.p<caret>lus()
|
|
}
|