Files
kotlin-fork/nj2k/testData/newJ2k/comments/commentInsideCall.java
T
2019-04-03 11:24:19 +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 "";
}
}