aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/filters/suppresswithplaintextcommentfilter/InputSuppressWithPlainTextCommentFilterWithDefaultCfg.java
blob: 3a1a64d20b69ee9978e5ef2a58898bc85075f85e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.puppycrawl.tools.checkstyle.filters.suppresswithplaintextcommentfilter;

public class InputSuppressWithPlainTextCommentFilterWithDefaultCfg {
    // CHECKSTYLE:OFF
    //	has tab here

    // CHECKSTYLE:ON
    //	has tab here

	private int a; // CHECKSTYLE:OFF
    // CHECKSTYLE:ON
}