aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr131933.aj
blob: a374c13af30356cbe36c9211114230c0da9c56be (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.util.List;

aspect Slide71 {
        before(): GenericType<String>.foo() {}
        before(): GenericType<MyList>.foo() {}
        //before(): GenericType.foo() {}
}

class GenericType<T> {
        public pointcut foo(): execution(* T.*(..));
}