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

interface InputOneTopLevelInterface2inner1 {
    int foo();
}

public interface InputOneTopLevelInterface2 {
    int foo();
}

interface InputOneTopLevelInterface2inner2 {
    int foo();
}