aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr152871/MyAspect.java
blob: cbad3a906a20982abe1f00efd50495a195eb7c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package a;

import org.aspectj.lang.annotation.*;

@Aspect
public class MyAspect {
  //before(): call(* print(..)) {
  @Before("call(* print(..))")
  public void m() {
    System.out.println("advice running");
  }
}