8 lines
135 B
Kotlin
Vendored
8 lines
135 B
Kotlin
Vendored
fun test() {
|
|
class Test {
|
|
operator fun plus(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.pl<caret>us(a=1)
|
|
}
|