aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/PR82570_1.java
blob: c7eb464d6b6ea826503e4e2a70f56d8479f34c82 (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
25
26
27
28
29
30
31
32
public class PR82570_1 {
  public static void main(String[] args) {
	new PR82570_1().m();
  }
  
  public void m() {
  	
  }
}

aspect X {
	
	
	public PR82570_1.new(String p) { this(); }
	
	public int PR82570_1.itdField;
	
	public void PR82570_1.itdMethod(String s) {
		
	}
	
	before(): call(* m(..)) {
		System.err.println("m");
	}
	
	void around(): call(* m(..)) {
		
	}
	
}