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

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

}