19 lines
343 B
Java
Vendored
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 "";
|
|
}
|
|
} |