Files
kotlin-fork/idea/testData/intentions/insertCurlyBracesToTemplate/insertBrackets2.kt.after
T
Nikolay Krasko 5fb90a8a81 Better caret position after Insert curly braces around variable (KT-28739)
Introduce helper class and move caret to it's original position.

 #KT-28739 Fixed
2018-12-13 12:36:01 +03:00

5 lines
99 B
Plaintext
Vendored

// IS_APPLICABLE: true
fun foo() {
val x = 4
val y = "something${<caret>x}.somethingelse"
}