aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr242797/case2/GenericMethodAspect.aj
blob: 8bd5d166dd20966970f4ee1dee995a658a25b0aa (plain)
1
2
3
4
5
6
7
8
9
10
import java.util.ArrayList;
import java.util.List;

public aspect GenericMethodAspect {
	
	public <T> List<T> GenericMethodInterface.getStuff(){
		return new ArrayList<T>();
	}

}