Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/langtools/test/tools/doclint/AnchorTest2.java
32285 views
1
/*
2
* @test /nodynamiccopyright/
3
* @bug 8020313
4
* @summary doclint doesn't reset HTML anchors correctly
5
* @build DocLintTester
6
* @run main DocLintTester -ref AnchorTest2.out AnchorTest2.java AnchorTest2a.java
7
* @run main DocLintTester -ref AnchorTest2.out AnchorTest2a.java AnchorTest2.java
8
*/
9
10
/** */
11
public class AnchorTest2 {
12
/** <a name="AnchorTest2"> </a> */
13
public void a_name_AnchorTest2() { }
14
15
/** <a name="AnchorTest2"> </a> */
16
public void a_name_AnchorTest2_already_defined() { }
17
18
/** <a name="AnchorTest2a"> </a> */
19
public void a_name_AnchorTest2a_defined_in_other_file() { }
20
}
21
22