aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR157054/base/dash/obtain/ObtainStaticAspect.aj
blob: eff8dfc6d6331ce88f97bea06e5da8c90650fd58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package dash.obtain;


public aspect ObtainStaticAspect  {

	pointcut obtain_get(): get(@Obtain static * *);

	Object around(): obtain_get() {
		return proceed();
	}
	
	public void foo() {
		//System.out.println("foo: "+ObtainStaticTestClass.foo);
	}

}