aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/Remove.java
blob: 3f980f6acebe4292f6fbc816f3b68992b454c984 (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
25
package test2;

class RemoveParent {
    int p;
}

public class Remove extends RemoveParent {
    public int f1;
    public int f2;
    public String f3;
    public Remove f4;
    public int[] f5;
    public int f6;
    int g = 3;

    public void bar() {}
    public Remove() { g = 7; }
    public Remove(int i) { g = i; }

    public int foo() {
        return g;
    }

    public void bar2() {}
}