test/tools/doclint/tidy/MissingTag.java

Mon, 17 Dec 2012 07:47:05 -0800

author
jjg
date
Mon, 17 Dec 2012 07:47:05 -0800
changeset 1455
75ab654b5cd5
child 1465
a22f23fb7abf
permissions
-rw-r--r--

8004832: Add new doclint package
Reviewed-by: mcimadamore

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @library ..
     4  * @build DocLintTester
     5  * @run main DocLintTester -ref MissingTag.out MissingTag.java
     6  */
     8 // tidy: Warning: missing <.*>
     9 // tidy: Warning: missing </.*> before </.*>
    11 /**
    12  * </p>
    13  * <h1> <b> text </h1>
    14  */
    15 public class MissingTag { }

mercurial