2012-12-17 15:47:05 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2012-12-20 17:59:46 +00:00
|
|
|
* @bug 8004832
|
|
|
|
* @summary Add new doclint package
|
2012-12-17 15:47:05 +00:00
|
|
|
* @library ..
|
2015-05-21 18:41:04 +00:00
|
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
2012-12-17 15:47:05 +00:00
|
|
|
* @build DocLintTester
|
|
|
|
* @run main DocLintTester -ref UnescapedOrUnknownEntity.out UnescapedOrUnknownEntity.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
// tidy: Warning: unescaped & or unknown entity ".*"
|
|
|
|
// tidy: Warning: unescaped & which should be written as &
|
|
|
|
// tidy: Warning: entity ".*" doesn't end in ';'
|
|
|
|
|
|
|
|
/**
|
|
|
|
* L&F
|
|
|
|
* Drag&Drop
|
|
|
|
* if (a & b);
|
|
|
|
*/
|
|
|
|
public class UnescapedOrUnknownEntity { }
|