Files
kotlin-fork/idea/testData/debugger/smartStepInto/unary.kt
T

9 lines
152 B
Kotlin
Vendored

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