Files
kotlin-fork/j2k/testData/fileOrElement/comments/commentInsideCall.java
T
2016-03-11 12:08:10 +03:00

19 lines
343 B
Java
Vendored

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 "";
}
}