aboutsummaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/pr119453/src/pack/C.java
blob: cdeb3e150b85b53ef558deee2b5aae7f287873c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package pack;

public class C {

	public int x = 2;
	
	void method() {
	}
	
	public String method1() {
		return "";
	}
	
	private String method2(){
		return "";
	}
	
	public void method3(String s) { 
	}
	
}