Files
kotlin-fork/idea/testData/refactoring/introduceVariable/IfThenValuedAddBlock.kt
T

3 lines
88 B
Kotlin
Vendored

fun a(x: Int) {
val t = if (x > 0) <selection>x + x</selection> - 1 else x * x + 1
}