langtools/test/tools/doclint/UnfinishedInlineTagTest.java
author naoto
Tue, 29 Mar 2016 17:06:33 -0700
changeset 36739 145210aba850
parent 30730 d3ce7619db2c
permissions -rw-r--r--
8152704: jlink command line output/help message improvement Reviewed-by: mchung
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
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 15552
diff changeset
     5
 * @modules jdk.compiler/com.sun.tools.doclint
15552
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     6
 * @build DocLintTester
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     7
 * @run main DocLintTester -Xmsgs:-html UnfinishedInlineTagTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     8
 * @run main DocLintTester -Xmsgs -ref UnfinishedInlineTagTest.out UnfinishedInlineTagTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     9
 * @author jlahoda
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
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    12
import java.util.List;
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    13
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    14
/**{@link List
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    15
 */
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    16
public class UnfinishedInlineTagTest {
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    17
}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    18