aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test3/TransformRead.java
blob: 0075a237eff78e142b4a61edd454c02c57d189bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test3;

class TransformRead1 {
    public int value = 1;
    public int value2 = 10;
}

public class TransformRead extends TransformRead1 {
    public int value = 100;
    public int foo() {
        return value + value2 + super.value;
    }
    public static int getValue(Object obj) { return 1000; }
    public static int getValue2(Object obj) { return 10000; }
}