2018-03-22 11:13:08 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2020-06-19 18:04:52 +00:00
|
|
|
* @bug 8198552 8247815
|
2018-03-22 11:13:08 +00:00
|
|
|
* @summary Check that -Xdoclint: option can be specified multiple times
|
2020-06-19 18:04:52 +00:00
|
|
|
* @compile/fail/ref=MultipleDocLintOptionsTest.out -Xdoclint:html -Xdoclint:missing -XDrawDiagnostics MultipleDocLintOptionsTest.java
|
2018-03-22 11:13:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** <html> */
|
|
|
|
public class MultipleDocLintOptionsTest {
|
2021-08-16 20:48:25 +00:00
|
|
|
/**
|
|
|
|
* .
|
|
|
|
* @return
|
|
|
|
*/
|
2018-03-22 11:13:08 +00:00
|
|
|
int emptyReturn() { return -1; }
|
2021-08-11 18:03:40 +00:00
|
|
|
|
2021-08-16 20:48:25 +00:00
|
|
|
/** . */
|
2021-08-11 18:03:40 +00:00
|
|
|
MultipleDocLintOptionsTest() { }
|
2018-03-22 11:13:08 +00:00
|
|
|
}
|