langtools/test/tools/doclint/MissingCommentTest.java
author joehw
Tue, 09 May 2017 10:34:32 -0700
changeset 45036 4210d32dacab
parent 30730 d3ce7619db2c
permissions -rw-r--r--
8150256: removing xerces-related dead code Reviewed-by: lancea

/*
 * @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() { }
}