langtools/test/tools/doclint/MissingCommentTest.java
author alanb
Wed, 21 Aug 2013 09:59:12 +0100
changeset 19565 e1593e8a70ff
parent 14952 d0022ae20516
child 30730 d3ce7619db2c
permissions -rw-r--r--
8023351: Add TEST.groups in preparation to simplify rules in jdk/test/Makefile Reviewed-by: lancea, mduigou

/*
 * @test /nodynamiccopyright/
 * @build DocLintTester
 * @run main DocLintTester -Xmsgs:-missing MissingCommentTest.java
 * @run main DocLintTester -Xmsgs:missing -ref MissingCommentTest.out MissingCommentTest.java
 */

public class MissingCommentTest {
    MissingCommentTest() { }

    int missingComment;

    void missingComment() { }
}