aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr162539/test/ataspectj/pointcutlibrary/PointcutLibrary.java
blob: 54b0a4affb697eab2f55e0023bdf368baa1aa15e (plain)
1
2
3
4
5
6
7
8
9
10
11
package test.ataspectj.pointcutlibrary;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

//@Aspect
public class PointcutLibrary {
//pointcut mainMethod(): execution(public void main(String[]));
@Pointcut("execution(public void main(String[]))") public void mainMethod () { }

}