author | naoto |
Tue, 29 Mar 2016 17:06:33 -0700 | |
changeset 36739 | 145210aba850 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
19120 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 8020313 |
|
4 |
* @summary doclint doesn't reset HTML anchors correctly |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
19120
diff
changeset
|
5 |
* @modules jdk.compiler/com.sun.tools.doclint |
19120 | 6 |
* @build DocLintTester |
7 |
* @run main DocLintTester -ref AnchorTest2.out AnchorTest2.java AnchorTest2a.java |
|
8 |
* @run main DocLintTester -ref AnchorTest2.out AnchorTest2a.java AnchorTest2.java |
|
9 |
*/ |
|
10 |
||
11 |
/** */ |
|
12 |
public class AnchorTest2 { |
|
13 |
/** <a name="AnchorTest2"> </a> */ |
|
14 |
public void a_name_AnchorTest2() { } |
|
15 |
||
16 |
/** <a name="AnchorTest2"> </a> */ |
|
17 |
public void a_name_AnchorTest2_already_defined() { } |
|
18 |
||
19 |
/** <a name="AnchorTest2a"> </a> */ |
|
20 |
public void a_name_AnchorTest2a_defined_in_other_file() { } |
|
21 |
} |