aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/InputUncommentedMain3.java
blob: ad701877bd6c7a097126dc25c87024620edd366d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2003
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle.checks;

class oneMoreClass {
    
    public static void anyWrongMethodName(String[] args)
    {
        System.identityHashCode("InputUncommentedMain.main()");
    }
}