Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithBinaryOperator/allowableDefaultArgument.kt
T
2015-12-17 11:11:27 +03:00

8 lines
143 B
Kotlin
Vendored

fun test() {
class Test {
operator fun plus(a: Int, b: Int=5): Test = Test()
}
val test = Test()
test.pl<caret>us(1)
}