aboutsummaryrefslogtreecommitdiffstats
path: root/weaver/testsrc/fluffy/Base.java
blob: 9aa148d68c6dc266fae9a9a02be6a120aad55a5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package fluffy;

public class Base {

	public static void onlyBase() {}
	public static void both() {}

	public int onlyBase;
	public int both;
	
	public Base() {}
	public Base(int i) {}
	
	public void m() throws CloneNotSupportedException {}
}