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

class InputUncommentedMainTest4
{
    // one more uncommented main
    public static void main(int[] args)
    {
        System.identityHashCode("test1.main()");
    }
}