< prev index next >

test/langtools/tools/doclint/tidy/MissingTag.java

Print this page


   1 /*
   2  * @test /nodynamiccopyright/
   3  * @bug 8004832
   4  * @summary Add new doclint package
   5  * @library ..
   6  * @modules jdk.compiler/com.sun.tools.doclint
   7  * @build DocLintTester
   8  * @run main DocLintTester -ref MissingTag.out MissingTag.java
   9  */
  10 
  11 // tidy: Warning: missing <.*>
  12 // tidy: Warning: missing </.*> before </.*>
  13 
  14 /**
  15  * </p>
  16  * <h1> <b> text </h1>
  17  */
  18 public class MissingTag { }
   1 /*
   2  * @test /nodynamiccopyright/
   3  * @bug 8004832
   4  * @summary Add new doclint package
   5  * @library ..
   6  * @modules jdk.compiler/com.sun.tools.doclint
   7  * @build DocLintTester
   8  * @run main DocLintTester -ref MissingTag.out MissingTag.java
   9  */
  10 
  11 // tidy: Warning: missing <.*>
  12 // tidy: Warning: missing </.*> before </.*>
  13 
  14 /**
  15  * </p>
  16  * <h2> <b> text </h2>
  17  */
  18 public class MissingTag { }
< prev index next >