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

8 lines
115 B
Kotlin
Vendored

fun foo(a: Int): Int {
val b = (<selection>a + 1</selection>) * 2
return a + b
}
fun test() {
foo(1)
}