author | ihse |
Wed, 21 Jun 2017 12:51:25 +0200 (2017-06-21) | |
changeset 45763 | 2a2e56f4c03b |
parent 30730 | d3ce7619db2c |
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 EmptyParamTest.java * @run main DocLintTester -Xmsgs:syntax -ref EmptyParamTest.out EmptyParamTest.java */ /** . */ public class EmptyParamTest { /** @param i */ int emptyParam(int i) { } }