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

9 lines
159 B
Plaintext

// INTENTION_TEXT: Replace with '*' operator
fun test() {
class Test {
fun times(a: Int): Test = Test()
}
val test = Test()
test * 1
}