org.aspectj/tests/pureJava/CommentSyntax.java

20 lines
270 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
/** 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
/**/
}
}