Files
kotlin-fork/idea/testData/smartSelection/commentsAndExtraSpaces.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

10 lines
91 B
Kotlin
Vendored

fun foo() {
(<caret>1 + // abc
2 /*def*/) * 3
}
/*
1
1 + 2
(1 + 2) * 3
*/