test/tools/doclint/LiteralTest.java

Mon, 20 Jul 2015 11:41:52 -0700

author
asaha
date
Mon, 20 Jul 2015 11:41:52 -0700
changeset 2941
29ef5ee31b3d
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u65-b06 for changeset ae5e31450299

     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