aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr266165/NeverWeave.java
blob: 85f5bbcd658ef6c44081d9b0f4eda92bd9208dab (plain)
1
2
3
4
5
6
7
8
9
10
11
aspect A {

  public static final boolean enabled = false;

  before(): execution(* NeverWeave.*(..)) && if(enabled) {}

}

public class NeverWeave {
  public void foo() {}
}