mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
14 lines
266 B
Java
14 lines
266 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @library ..
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -ref MissingGT.out MissingGT.java
|
|
*/
|
|
|
|
// tidy: Warning: <.*> missing '>' for end of tag
|
|
|
|
/**
|
|
* <img src="image.gif"
|
|
* <i> text </i>
|
|
*/
|
|
public class MissingGT { }
|