author | lana |
Tue, 08 Aug 2017 22:52:41 +0000 | |
changeset 46173 | 5546b5710844 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
14952 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
14962 | 3 |
* @bug 8004832 |
4 |
* @summary Add new doclint package |
|
14952 | 5 |
* @library .. |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
14962
diff
changeset
|
6 |
* @modules jdk.compiler/com.sun.tools.doclint |
14952 | 7 |
* @build DocLintTester |
8 |
* @run main DocLintTester -ref InvalidEntity.out InvalidEntity.java |
|
9 |
*/ |
|
10 |
||
11 |
// tidy: Warning: replacing invalid numeric character reference .* |
|
12 |
||
13 |
// See |
|
14 |
// http://www.w3.org/TR/html4/sgml/entities.html |
|
15 |
// http://stackoverflow.com/questions/631406/what-is-the-difference-between-em-dash-151-and-8212 |
|
16 |
||
17 |
/** |
|
18 |
*  |
|
19 |
*  |
|
20 |
* &splodge; |
|
21 |
* |
|
22 |
*/ |
|
23 |
public class InvalidEntity { } |