Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/smartStepInto/unary.kt
T
2019-10-08 19:13:55 +09:00

9 lines
152 B
Kotlin
Vendored

class A {
operator fun unaryPlus() {}
operator fun unaryMinus() {}
}
fun foo() {
<caret>+A() || -A()
}
// EXISTS: unaryPlus(), unaryMinus()