1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-08-26 05:57:44 +02:00
org.aspectj/tests/pureJava/CommentSyntax.java
2002-12-16 18:51:06 +00:00

20 Zeilen
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
/**/
}
}