summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/inspection/sillyAssignment/multiple/src/Test.java
blob: 0b3feb5b6203d54fffa5be3808d821f742b7f80f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public class Test extends Super {
    public static void main(String[] args) {
        args = args;
        int j = ((j) = 1);
        args = (args) = null;
    }

    private final int z = this.z;
    public static int y = ABCV.y;
    public static final int x = ABCV.x;

    static void foo() {
        y = Test.y;
    }

    void call() {
      h = super.h;
      h = (h) = 1;
    }
}
class Super {
    int h;
}