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