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

8 lines
102 B
Plaintext
Vendored

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