aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs187/307147_2/Test.java
blob: fe184dfe5553b4fa5486b4304d3e8efc29736b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package test;

public class Test {

	public Test() {
	}
	
	public static void main(String[] args) {
		Test t = new Test();
		t.itdFunction();
	}
	
	private void privateMethod(String xxx) {
		System.out.println("hello "+xxx);
	}
}