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

public class ParentIntObj implements ParentInt {

	public void doNewTT(String o) {
		// TODO Auto-generated method stub
		
		System.out.println("ParentIntObj");

	}
	
	public static void main(String[] args) {
		new ParentIntObj().doNewTT("");				
	}

}