KT-13628 New line is not preserved when converting java to Kotlin

#KT-13628 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-10-01 00:25:55 +03:00
parent 8fe57c8e84
commit badbcd4989
16 changed files with 91 additions and 23 deletions
@@ -0,0 +1,8 @@
public class C {
void foo() {
StringBuilder builder = new StringBuilder();
builder.append(1)
.append(2).append(3)
.append(4);
}
}