aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/CommentSyntax.java
blob: ac449b3b29970f6af54b0d11bef702630c50ead0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** 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
	
	/**/
    }
}