public class Outer { public static void main(String[] args) { new Inner(); } static class Inner { Inner() { System.out.println("some static"); } } }