blob: 45188da53d9e9d0d19e1c819bd300205e16ba739 [file] [log] [blame]
package javadoc.test013;
import java.util.*;
public class Test {
/**
* Javadoc comment
*/
public static void main(String[] args) {
/* method main */
System.out.println("Hello" + " world"); // comment
}
/** */
public void foo() {
System.out.println("Hello" + /* inside comment */ " world");
}
}