3789983e89
Reviewed-by: darcy, ihse
18 lines
367 B
Java
18 lines
367 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8004832
|
|
* @summary Add new doclint package
|
|
* @library ..
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -ref BadEnd.out BadEnd.java
|
|
*/
|
|
|
|
// tidy: Warning: <.*> is probably intended as </.*>
|
|
|
|
/**
|
|
* <a name="here"> text <a>
|
|
* <code> text <code>
|
|
*/
|
|
public class BadEnd { }
|