aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/NewOp.java
blob: a933425211aee2d02196ed08fa438881c6abd6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package test2;

class NewOp2 {
    NewOp2(long j, NewOp op, Object obj, long k) {}
}

public class NewOp {
    @SuppressWarnings("rawtypes")
    java.util.Vector listenerList;
    static int i = 0;
    static String s;
    static {
        String m = "test";
        s = m.substring(1);
    }
}