View Javadoc
1   package org.checkstyle.suppressionxpathfilter.commentsindentation;
2   
3   public class InputXpathCommentsIndentationWithinBlockStatement {
4       public void foo() {
5           String s = "F"
6           // Comment // warn
7               + "O"
8               + "O";
9       }
10  }