blob: 2b0f96b461f15c11f6a3e4891cc266ed819f2659 [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2003
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle.checks.uncommentedmain;
public class InputUncommentedMain2
{
private class PC {
// uncommented main with depth 2
public void main(String[] args)
{
System.identityHashCode("InputUncommentedMain.main()");
}
//lets go deeper
private class PC2 {
// uncommented main with depth 3
public void main(String[] args)
{
System.identityHashCode("InputUncommentedMain.main()");
}
}
}
public static void main(String[] args)
{
System.identityHashCode("InputUncommentedMain.main()");
}
}
interface IF {
void main(String[] args);
}