blob: 6292d9f169570e55516f85ecc8d5b5d11df5aa54 [file] [log] [blame]
package test;
public class Test {
public static void main(String[] args) {
System.out
// Comment
.println();
Test
// Comment1
.foo()
// Comment2
.indexOf("s")
}
public static String foo() {
return "";
}
}