aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/design/InputOneTopLevelInterface2.java
blob: 86de2f59cedd09d2a6fe2630ea8976b3b47ad5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.puppycrawl.tools.checkstyle.checks.design;

interface InputOneTopLevelInterface2inner1 {
    int foo();
}

public interface InputOneTopLevelInterface2 {
    int foo();
}

interface InputOneTopLevelInterface2inner2 {
    int foo();
}