Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithUnaryOperator/extensionFunction.kt
T
2015-05-14 01:10:05 +03:00

9 lines
114 B
Kotlin

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