Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithUnaryOperator/extensionFunction.kt
T

9 lines
133 B
Kotlin
Vendored

fun test() {
class Test()
operator fun Test.unaryPlus(): Test = Test()
val test = Test()
test.unaryPl<caret>us()
}