summaryrefslogtreecommitdiffstats
path: root/src/test/test2/Where.java
blob: 29907f8168c51a5bb01d8888a423253843099c6c (plain)
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);
    }
}