ae45592d33
Reviewed-by: kcr, hannesw
19 lines
456 B
Java
19 lines
456 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8198552 8247815
|
|
* @summary Check that -Xdoclint: option can be specified multiple times
|
|
* @compile/fail/ref=MultipleDocLintOptionsTest.out -Xdoclint:html -Xdoclint:missing -XDrawDiagnostics MultipleDocLintOptionsTest.java
|
|
*/
|
|
|
|
/** <html> */
|
|
public class MultipleDocLintOptionsTest {
|
|
/**
|
|
* .
|
|
* @return
|
|
*/
|
|
int emptyReturn() { return -1; }
|
|
|
|
/** . */
|
|
MultipleDocLintOptionsTest() { }
|
|
}
|