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

8 lines
123 B
Plaintext

fun test() {
class Test {
fun plus(a: Int, b: Int=5): Test = Test()
}
val test = Test()
test + 1
}