9 lines
114 B
Kotlin
9 lines
114 B
Kotlin
fun test() {
|
|
class Test()
|
|
|
|
fun Test.plus(): Test = Test()
|
|
|
|
val test = Test()
|
|
test.pl<caret>us()
|
|
}
|