2012-12-17 07:47:05 -08:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2015-05-21 11:41:04 -07:00
|
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
2012-12-17 07:47:05 -08:00
|
|
|
* @build DocLintTester
|
|
|
|
* @run main DocLintTester -Xmsgs:-missing MissingCommentTest.java
|
|
|
|
* @run main DocLintTester -Xmsgs:missing -ref MissingCommentTest.out MissingCommentTest.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class MissingCommentTest {
|
|
|
|
MissingCommentTest() { }
|
|
|
|
|
|
|
|
int missingComment;
|
|
|
|
|
|
|
|
void missingComment() { }
|
|
|
|
}
|