1 /*
2  * @test /nodynamiccopyright/
3  * @bug 8006263
4  * @summary Supplementary test cases needed for doclint
5  * @library ..
6  * @modules jdk.compiler/com.sun.tools.doclint
7  * @build DocLintTester
8  * @run main DocLintTester -ref StatsTest.out -stats -Xmsgs:all StatsTest.java
9  */
10 
11 // warning: missing comment
12 public class StatsTest {
13     /**
14      * � � � �
15      */
errors()16     public void errors() { }
17 
18     /** 4 undocumented signature items */
warnings(int a1, int a2)19     public int warnings(int a1, int a2) throws Exception { return 0; }
20 }
21