aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core/testdata/partialHierarchy/sample/Derived.java
blob: cc79957a400d4e68a0c9bca6db7242350b3009f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package sample;

public class Derived extends Base {
    int y;
    public Derived() {
	super();
	y = 2;
    }

    public void foo() {}

    public static void main(String args[]) {
	new Derived();
    }
}