mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00

Fixing handling of multiple -Xplugin, -Xdoclint: and -Xdoclint/packages: parameters. Reviewed-by: jjg, vromero
12 lines
375 B
Java
12 lines
375 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8198552
|
|
* @summary Check that -Xdoclint: option can be specified multiple times
|
|
* @compile/fail/ref=MultipleDocLintOptionsTest.out -Xdoclint:html -Xdoclint:syntax -XDrawDiagnostics MultipleDocLintOptionsTest.java
|
|
*/
|
|
|
|
/** <html> */
|
|
public class MultipleDocLintOptionsTest {
|
|
/** @return */
|
|
int emptyReturn() { return -1; }
|
|
}
|