aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features1610/makeSJPOptimization/B.java
blob: 9cd1655b71d9b3be310a17694db29a7a797451fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
public class B{
	public static void main(String args[]) throws Throwable{
		B b = new B();
		b.method1(null);
		b.method2(null,null);
		b.method3();
		method4();

	}


	
	public Object method1(String p1){
		return "Hola";
	}
	
	public Object method2(String p1, Integer p2) throws Exception{
		return "Hola";
	}
	
	private void method3(){
		return;
	}

	public  static void method4(){
		return;
	}

}