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


abstract aspect Super {
  void foo(String s,int i) {}
}

public aspect ACode extends Super {

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

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

	public static void m() {}
}