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

9 lines
124 B
Kotlin
Vendored

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