changeset 49278 | 31c5e0d5f4c3 |
49277:cf9e3c8607b7 | 49278:31c5e0d5f4c3 |
---|---|
1 /* |
|
2 * @test /nodynamiccopyright/ |
|
3 * @bug 8198552 |
|
4 * @summary Check that -Xdoclint: option can be specified multiple times |
|
5 * @compile/fail/ref=MultipleDocLintOptionsTest.out -Xdoclint:html -Xdoclint:syntax -XDrawDiagnostics MultipleDocLintOptionsTest.java |
|
6 */ |
|
7 |
|
8 /** <html> */ |
|
9 public class MultipleDocLintOptionsTest { |
|
10 /** @return */ |
|
11 int emptyReturn() { return -1; } |
|
12 } |