1/*
2 * @test /nodynamiccopyright/
3 * @bug 8020664 8021215
4 * @summary doclint gives incorrect warnings on normal package statements
5 * @library ../..
6 * @modules jdk.compiler/com.sun.tools.doclint
7 * @build DocLintTester
8 * @run main DocLintTester -ref Test.out Test.java
9 * @compile/fail/ref=Test.javac.out -XDrawDiagnostics -Werror -Xdoclint:all Test.java
10 */
11
12/** Unexpected comment */
13package bad;
14
15/** */
16class Test { }
17
18