aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr262509/Foo.java
blob: 053f1535669f9041b127fbfa011e648e1adad1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class Foo {
	int i=3;
	
	// Need local variable table for this code to be OK and not lose the fact that this/etc are setup from
	// instruction 0 to the end of the method
	void foo(Bar bar) {
		i = 33;
		
	}
	public static void main(String[] args) {
		new Foo().foo(null);
	}
}

class Bar {}

aspect FooAspect {
	before(): execution(* *(..)) {}
}