Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
16 lines
422 B
Java
16 lines
422 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8004832
|
|
* @summary Add new doclint package
|
|
* @library ..
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.doclint
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -Xmsgs:all,-missing -ref RepeatedAttr.out RepeatedAttr.java
|
|
*/
|
|
|
|
// tidy: Warning: <.*> dropping value ".*" for repeated attribute ".*"
|
|
|
|
/**
|
|
* <img src="image.gif" alt alt="summary">
|
|
*/
|
|
public class RepeatedAttr { }
|