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

7 lines
82 B
Plaintext
Vendored

fun foo(i: Int) { }
fun test() {
val i = (1 + 2
- 3)
foo(i)
}