aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163/pr252722/BCode.java
blob: 1773ac0d9c69e1c2056621f414f883ef139783d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import org.aspectj.lang.annotation.*;
import org.aspectj.lang.*;


abstract aspect Super {
  void foo(String s) {}
}

public aspect BCode extends Super {

	void around(): execution(* m(..)) {
		super.foo("hello");
	}

	public static void main(String []argv) {
		new C().m();
	}
}

class C { 

	public void m() {}
}