Files
kotlin-fork/idea/testData/refactoring/introduceParameter/functionWithDefaultValue.kt.after
T
2015-04-09 13:49:20 +03:00

8 lines
104 B
Plaintext

fun foo(a: Int, i: Int = a + 1): Int {
val b = (i) * 2
return a + b
}
fun test() {
foo(1)
}