aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/modifier/InputRedundantStaticModifierInInnerTypeOfInterface.java
blob: 06a333268b0b75dd1017cc9c61ff57f8893b03e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2015
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle.checks.modifier;

public interface InputRedundantStaticModifierInInnerTypeOfInterface {
    static class MyInnerClass { } // violation

    class MyInnerClass2 { }

    static enum MyInnerEnum { } // violation

    enum MyInnerEnum2 { }
}