mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8200432: javadoc fails with ClassCastException on {@link byte[]}
Reviewed-by: jjg, sundar
This commit is contained in:
parent
710ecce7f7
commit
c047c5cfcf
7 changed files with 109 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* @test /nodynamiccopyright/
|
||||
* @bug 8004832 8020556 8002154
|
||||
* @bug 8004832 8020556 8002154 8200432
|
||||
* @summary Add new doclint package
|
||||
* @modules jdk.compiler/com.sun.tools.doclint
|
||||
* @build DocLintTester
|
||||
|
@ -59,9 +59,21 @@ public class ReferenceTest {
|
|||
/**
|
||||
* {@link java.util.List<String>}
|
||||
* {@link java.util.List<String>#equals}
|
||||
* {@link not.Found<String>}
|
||||
* @see java.util.List<String>
|
||||
* @see java.util.List<String>#equals
|
||||
* @see not.Found<String>
|
||||
*/
|
||||
public void invalid_type_args() { }
|
||||
|
||||
/**
|
||||
* {@link java.lang.String[]}
|
||||
* {@link java.lang.String[]#equals}
|
||||
* {@link not.Found[]}
|
||||
* @see java.lang.String[]
|
||||
* @see java.lang.String[]#equals
|
||||
* @see not.Found[]
|
||||
*/
|
||||
public void invalid_array_types() { }
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue