summaryrefslogtreecommitdiffstats
path: root/weaver/testsrc/fluffy/Derived.java
blob: ad0842c18c771a87f058d4e348a2b5c4076565a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package fluffy;

import java.io.IOException;

public class Derived extends Base {

	public static void onlyDerived() throws IOException, CloneNotSupportedException {}
	public static void both() {}
	
	public void onlyDerivedNonStatic() {}
	public void bothNonStatic() {}
	
	public int onlyDerived;
	public int both;
	
	public Derived() {}
	
	public void m() {}
	
}