aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr141730/inpath/MyFoo.java
blob: d9aba23f4a36171c492201c80b30e86c5fcb6ac4 (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
package foo;

public class MyFoo {

	public int i;
	
	public MyFoo() {
		super();
	}
	
	public MyFoo(String s) {
		super();
	}
	
	public void callMain() {
		new MyFoo().main();
	}
	
	public void main() {
		System.out.println("blah");
	}
	
	public void anotMethod() {	
	}
}