J2K: preserving line breaks between arguments

This commit is contained in:
Valentin Kipyatkov
2015-06-16 14:01:38 +03:00
parent fefb828fae
commit 40fe680acf
7 changed files with 76 additions and 6 deletions
@@ -0,0 +1,11 @@
class C {
C(int p1, int p2, int p3){}
}
class User {
void foo() {
new C(1,
2,
3);
}
}