1 package test2; 2 3 public class Where { 4 static int i = 0; 5 static String s; 6 static { 7 String m = "test"; 8 s = m.substring(1); 9 } 10 } 11