Join Lines: Fix test data since IDEA now converts single-line comments to block ones when joining lines

This commit is contained in:
Alexey Sedunov
2015-02-15 23:57:54 +03:00
committed by Nikolay Krasko
parent 2a593fc437
commit f1b3bb6ae7
2 changed files with 2 additions and 2 deletions
@@ -1,5 +1,5 @@
fun foo(n: Int) {
// foo3
<caret>val /* foo */ x: String = "" // foo2 // bar3
val /* foo */ x: String = "" /* foo2*/ // bar3
/* baz */
}
@@ -1,5 +1,5 @@
fun foo(n: Int) {
// foo3
<caret>val /* foo */ x: String = "" // foo2 // bar3
val /* foo */ x: String = "" /* foo2*/ // bar3
/* baz */
}