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

8 lines
113 B
Plaintext

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