Files
kotlin-fork/idea/testData/intentions/attributeCallReplacements/replaceUnaryPrefixIntention/minusSanityTest.kt
T

9 lines
164 B
Kotlin

// INTENTION_TEXT: Replace with '-' operator
fun test() {
class Test {
fun minus(): Test = Test()
}
val test = Test()
test.min<caret>us()
}