Join with assignment: remove comment from target range #KT-22110 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-02-01 12:24:15 +03:00
committed by Mikhail Glukhikh
parent 36128ba66f
commit f9555f3f64
4 changed files with 48 additions and 19 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
class Test {
/* foo */ // bar<caret>
private val x: Int /* baz */ // qux
init {
x = 1
}
}
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
class Test {
/* foo */ // bar
private val x: Int <caret>/* baz */ // qux
init {
x = 1
}
}