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