summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr130722/test1/PointcutProvider.aj
blob: 7bae7adce2bd4fa659e755d1c06188c0602fe233 (plain)
1
2
3
4
5
6
7
8
9
package test1;

import test.Test;
public aspect PointcutProvider {

        public pointcut test(): execution(* Test.*(..));
}