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

public class Base {

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

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