8 lines
137 B
Kotlin
Vendored
8 lines
137 B
Kotlin
Vendored
fun test() {
|
|
class Test {
|
|
operator fun unaryPlus(): Test = Test()
|
|
}
|
|
val test = Test()
|
|
+test.unaryP<caret>lus()
|
|
}
|