summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr284771/base/src/test/Parent.java
blob: 2d8a33852fdbe63e217e4532d3f5870c9a1a2621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test;

public class Parent {

	public static void doTT(String o){
		
		System.out.println("parent");
		
	}
	
	
	public static void main(String[] args) {
		new Parent().doTT("kkk");
	}
}