summaryrefslogtreecommitdiffstats
path: root/src/test/test4/GetFieldDesc.java
blob: 605e2ad163c5a8616755c393d7f328e55bbc31f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package test4;

public class GetFieldDesc {
    public int f;
    public String s;
}

class GetFieldDescSub extends GetFieldDesc {
    public int f;
    public int s;
}