aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr173978/TestAroundAspect.java
blob: 9a884dd630dff21cfac7f9513d8f7cb934a9c2ae (plain)
1
2
3
4
5
6
public aspect TestAroundAspect{
  void around(): execution(void Test.sayHello(String)){
    proceed();
  }
}