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 */ 8 9/** */ 10public class LiteralTest { 11 /** <code> abc {@literal < & > } def </code> */ 12 public void ok_literal_in_code() { } 13 14 /** <code> abc {@code < & > } def </code> */ 15 public void bad_code_in_code() { } 16} 17 18