langtools/test/tools/doclint/UnfinishedInlineTagTest.java
author katleman
Tue, 21 Jan 2014 18:17:23 -0800
changeset 22365 895bfde469d4
parent 15552 99e4c7eb352c
child 30730 d3ce7619db2c
permissions -rw-r--r--
Added tag jdk9-b01 for changeset ae2d94255f32
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15552
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     1
/*
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     2
 * @test /nodynamiccopyright/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     3
 * @bug 8007096
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     4
 * @summary DocLint parsing problems with some comments
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     5
 * @build DocLintTester
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     6
 * @run main DocLintTester -Xmsgs:-html UnfinishedInlineTagTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     7
 * @run main DocLintTester -Xmsgs -ref UnfinishedInlineTagTest.out UnfinishedInlineTagTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     8
 * @author jlahoda
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     9
 */
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    10
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    11
import java.util.List;
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    12
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    13
/**{@link List
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    14
 */
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    15
public class UnfinishedInlineTagTest {
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    16
}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    17