split declaration: fix comments in context

This commit is contained in:
Anna Kozlova
2018-06-04 15:24:54 +03:00
parent 446c6110f1
commit 1ef91b8eb4
2 changed files with 5 additions and 7 deletions

View File

@@ -2,8 +2,8 @@
import java.util.*;
class Test {
{
List<String> l //end line comment
;
l = new ArrayList<>();
List<String> l;
l = new ArrayList//end line comment
<>();
}
}