author | joehw |
Tue, 09 May 2017 10:34:32 -0700 | |
changeset 45036 | 4210d32dacab |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
/* * @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() { } }