9 lines
158 B
Kotlin
Vendored
9 lines
158 B
Kotlin
Vendored
// FIX: Replace with '+'
|
|
fun test() {
|
|
class Test {
|
|
operator fun plus(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.pl<caret>us(1)
|
|
}
|