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