langtools/test/tools/doclint/MissingCommentTest.java
author amurillo
Mon, 11 Apr 2016 20:38:38 -0700
changeset 37298 8df0cc9da41e
parent 30730 d3ce7619db2c
permissions -rw-r--r--
8154028: Several hotspot tests need to be updated after 8153737 (Unsupported Module) Reviewed-by: darcy, kvn

/*
 * @test /nodynamiccopyright/
 * @modules jdk.compiler/com.sun.tools.doclint
 * @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() { }
}