org.aspectj/tests/pureJava/CommentSyntax.java
2002-12-16 18:51:06 +00:00

20 lines
270 B
Java

/** this is a comment */
/* So is this */
// so is this, and so is the form below
/**/
public class CommentSyntax {
public static void main(String[] args) {
/** this is a comment */
/* So is this */
// so is this, and so is the form below
/**/
}
}