mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
14 lines
277 B
Java
14 lines
277 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8020664
|
|
* @summary doclint gives incorrect warnings on normal package statements
|
|
* @library ../..
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -ref Test.out Test.java
|
|
*/
|
|
|
|
/** Unexpected comment */
|
|
package bad;
|
|
|
|
class Test { }
|
|
|