1/* 2 * @test /nodynamiccopyright/ 3 * @bug 8007096 4 * @summary DocLint parsing problems with some comments 5 * @modules jdk.javadoc/jdk.javadoc.internal.doclint 6 * @build DocLintTester 7 * @run main DocLintTester -Xmsgs:-html EndWithIdentifierTest.java 8 * @run main DocLintTester -Xmsgs -ref EndWithIdentifierTest.out EndWithIdentifierTest.java 9 * @author jlahoda 10 */ 11 12/**@deprecated*/ 13public class EndWithIdentifierTest { 14 15 /**{@link*/ 16 private void unfinishedInlineTagName() {} 17 18 /**@see List*/ 19 private void endsWithIdentifier() {} 20 21 /**&*/ 22 private void entityName() {} 23 24 /**<a*/ 25 private void tag() {} 26 27 /**</a*/ 28 private void tagEnd() {} 29 30 /**<a name*/ 31 private void attribute() {} 32} 33 34 35