test/tools/doclint/LiteralTest.java

Mon, 04 Jul 2016 13:06:03 -0700

author
asaha
date
Mon, 04 Jul 2016 13:06:03 -0700
changeset 3255
b4bd1c5fbbe3
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u111-b03 for changeset 386c8bc6dd3e

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 8006228
     4  * @summary Doclint doesn't detect <code> {@code nested inline} </code>
     5  * @build DocLintTester
     6  * @run main DocLintTester -ref LiteralTest.out LiteralTest.java
     7  */
     9 /** */
    10 public class LiteralTest {
    11     /** <code> abc {@literal < & > } def </code> */
    12     public void ok_literal_in_code() { }
    14     /** <code> abc {@code < & > } def </code> */
    15     public void bad_code_in_code() { }
    16 }

mercurial