class TestStaticBlock { static int staticInt; int objectFieldInt; static { staticInt = 10; System.out.println("static block called"); } }