mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
14 lines
268 B
Java
14 lines
268 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @library ..
|
|
* @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 { }
|