author | hseigel |
Wed, 01 Mar 2017 08:00:02 -0500 | |
changeset 46194 | 5596e6f63072 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
15552 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 8007096 |
|
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 | 6 |
* @build DocLintTester |
7 |
* @run main DocLintTester -Xmsgs:-html UnfinishedInlineTagTest.java |
|
8 |
* @run main DocLintTester -Xmsgs -ref UnfinishedInlineTagTest.out UnfinishedInlineTagTest.java |
|
9 |
* @author jlahoda |
|
10 |
*/ |
|
11 |
||
12 |
import java.util.List; |
|
13 |
||
14 |
/**{@link List |
|
15 |
*/ |
|
16 |
public class UnfinishedInlineTagTest { |
|
17 |
} |
|
18 |