aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/InputUncommentedMain3.java
blob: 70378c175b065af6b4db2eb1dee86d5dc4247b5b (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.out.println("InputUncommentedMain.main()");
    }
}