aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputCommentsIndentationJavadoc.java
blob: de2e7a76b42517534219d6b38c653ee90500a94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.puppycrawl.tools.checkstyle.checks.indentation;

  /**
   * violation
   */
public class InputCommentsIndentationJavadoc {

/** violation */
    int i;

        /**
         * violation
         */
    void foo() {}

    enum Bar {
          /** violation */
        A;
    }

}