jdk-24/langtools/test/tools/doclint/tidy/ParaInPre.java
Alexander Kulyakhtin b6262441ad 8076543: Add @modules as needed to the langtools tests
Reviewed-by: jjg, shurailine
2015-05-21 11:41:04 -07:00

22 lines
417 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8004832
* @summary Add new doclint package
* @library ..
* @modules jdk.compiler/com.sun.tools.doclint
* @build DocLintTester
* @run main DocLintTester -ref ParaInPre.out ParaInPre.java
*/
// tidy: Warning: replacing <p> by <br>
// tidy: Warning: using <br> in place of <p>
/**
* <pre>
* text
* <p>
* more text
* </pre>
*/
public class ParaInPre { }