aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr171952/FooAspect.java
blob: a376442fca645d45281d468367c0fe3ec6c2003a (plain)
1
2
3
4
5
6
7
8
9
10
import java.util.ArrayList;
import java.util.List;

public aspect FooAspect {


        public <T> List<T> Foo.createList() {
                return new ArrayList<T>();
        }
}