aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr242797/case3/GenericMethodImpl.java
blob: 0c52185984f9e7bfe3dff5b2de408cbd5b2810b4 (plain)
1
2
3
4
5
6
7
8
9
10
import java.util.LinkedList;
import java.util.List;

public class GenericMethodImpl<D extends Type1> implements GenericMethodInterface{
	
	public <T extends D> List<T> getStuff(){
		return new LinkedList<T>();
	}

}