author | naoto |
Tue, 29 Mar 2016 17:06:33 -0700 | |
changeset 36739 | 145210aba850 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
14952 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
14952
diff
changeset
|
3 |
* @modules jdk.compiler/com.sun.tools.doclint |
14952 | 4 |
* @build DocLintTester |
5 |
* @run main DocLintTester -Xmsgs:-missing MissingCommentTest.java |
|
6 |
* @run main DocLintTester -Xmsgs:missing -ref MissingCommentTest.out MissingCommentTest.java |
|
7 |
*/ |
|
8 |
||
9 |
public class MissingCommentTest { |
|
10 |
MissingCommentTest() { } |
|
11 |
||
12 |
int missingComment; |
|
13 |
||
14 |
void missingComment() { } |
|
15 |
} |