aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr256779/OtherAspect.java
blob: 05aa0ff744e6852f8547824e636fc1e2ce1d5003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com;

import org.aspectj.lang.annotation.*;


@Aspect
public class OtherAspect {
	@Before("execution(* *(..))")
			public void b() {}
  //...
}