aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/parametername/InputParameterNameReceiver.java
blob: cd450bf3ce121d16f05350381e5b754b4119bee5 (plain)
1
2
3
4
5
6
7
8
9
package com.puppycrawl.tools.checkstyle.checks.naming.parametername;

public class InputParameterNameReceiver {
    public void foo4(InputParameterNameReceiver this) {}

    private class Inner {
        public Inner(InputParameterNameReceiver InputParameterNameReceiver.this) {}
    }
}