8 lines
149 B
Kotlin
Vendored
8 lines
149 B
Kotlin
Vendored
fun test() {
|
|
class Test {
|
|
operator fun unaryPlus(vararg a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.unaryPl<caret>us()
|
|
}
|