3789983e89
Reviewed-by: darcy, ihse
18 lines
425 B
Java
18 lines
425 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8020664 8021215
|
|
* @summary doclint gives incorrect warnings on normal package statements
|
|
* @library ../..
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -ref Test.out Test.java
|
|
* @compile/fail/ref=Test.javac.out -XDrawDiagnostics -Werror -Xdoclint:all Test.java
|
|
*/
|
|
|
|
/** Unexpected comment */
|
|
package bad;
|
|
|
|
/** */
|
|
class Test { }
|
|
|