author | herrick |
Thu, 06 Jun 2019 19:51:17 -0400 | |
branch | JDK-8200758-branch |
changeset 57396 | 3944e4c2f779 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 8004832 * @summary Add new doclint package * @modules jdk.compiler/com.sun.tools.doclint * @build DocLintTester * @run main DocLintTester -Xmsgs:-syntax EmptyReturnTest.java * @run main DocLintTester -Xmsgs:syntax -ref EmptyReturnTest.out EmptyReturnTest.java */ /** . */ public class EmptyReturnTest { /** @return */ int emptyReturn() { } }