aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/Simpler/base/Basic.java
blob: c1eac7adfa4a6331c1ce79e14e74ce2fc2db33db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public aspect Basic {

/*
  before(): execution(* a(..)) {}
  after(): execution(* a(..)) {}
  before(): execution(* a(..)) {}
  after(): execution(* a(..)) {}

*/
  public void foo() {
	  new Runnable() {
		  public void run() {}
	  };
  }
}