Files
kotlin-fork/idea/testData/refactoring/introduceParameter/substituteBinaryExpressions.kt
T

9 lines
144 B
Kotlin
Vendored

// WITH_DEFAULT_VALUE: false
fun foo(a: Int, b: Int): Int {
return <selection>a * b</selection> / 2
}
fun test() {
foo(1 + 2, 3 - 4)
}