9 lines
133 B
Kotlin
Vendored
9 lines
133 B
Kotlin
Vendored
fun test() {
|
|
class Test()
|
|
|
|
operator fun Test.unaryPlus(): Test = Test()
|
|
|
|
val test = Test()
|
|
test.unaryPl<caret>us()
|
|
}
|