Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/langtools/test/tools/doclint/MissingCommentTest.java
32285 views
1
/*
2
* @test /nodynamiccopyright/
3
* @build DocLintTester
4
* @run main DocLintTester -Xmsgs:-missing MissingCommentTest.java
5
* @run main DocLintTester -Xmsgs:missing -ref MissingCommentTest.out MissingCommentTest.java
6
*/
7
8
public class MissingCommentTest {
9
MissingCommentTest() { }
10
11
int missingComment;
12
13
void missingComment() { }
14
}
15
16