Files
kotlin-fork/idea/testData/smartSelection/multilineOperations.kt
T
Alexey Sedunov f87d2d1fcc Introduce Refactorings: Implement trimming renderer for expression
chooser. Do not suggest parenthesized expressions
 #KT-9028 Fixed
2015-12-10 20:07:26 +03:00

13 lines
100 B
Kotlin
Vendored

fun foo() {
(<caret>1
+ 2 -
3)*(-
4)
}
/*
1
1 + 2
1 + 2 - 3
(1 + 2 - 3) * (-4)
*/