1   ////////////////////////////////////////////////////////////////////////////////
2   // Test case file for checkstyle.
3   // Created: 2003
4   ////////////////////////////////////////////////////////////////////////////////
5   package com.puppycrawl.tools.checkstyle.checks.uncommentedmain;
6   
7   class InputUncommentedMain4
8   {
9       // one more uncommented main
10      public static void main(int[] args)
11      {
12          System.identityHashCode("test1.main()");
13      }
14  }