test/tools/doclint/MissingCommentTest.java

Mon, 23 Sep 2013 17:27:38 +0400

author
kizune
date
Mon, 23 Sep 2013 17:27:38 +0400
changeset 2048
809a50f24d6f
parent 0
959103a6100f
permissions
-rw-r--r--

7154966: CRs found to be in Fixed state with no test and no noreg- keyword.
Reviewed-by: ksrini

aoqi@0 1 /*
aoqi@0 2 * @test /nodynamiccopyright/
aoqi@0 3 * @build DocLintTester
aoqi@0 4 * @run main DocLintTester -Xmsgs:-missing MissingCommentTest.java
aoqi@0 5 * @run main DocLintTester -Xmsgs:missing -ref MissingCommentTest.out MissingCommentTest.java
aoqi@0 6 */
aoqi@0 7
aoqi@0 8 public class MissingCommentTest {
aoqi@0 9 MissingCommentTest() { }
aoqi@0 10
aoqi@0 11 int missingComment;
aoqi@0 12
aoqi@0 13 void missingComment() { }
aoqi@0 14 }

mercurial