org.aspectj/tests/bugs162/pr210114/TestAspect.java

21 lines
363 B
Java

package test;
public aspect TestAspect {
Object around() : within(TestClass) {
return proceed();
}
after() : within(TestClass) {
}
}
class TestClass {
public void test() {
try {
new String();
} catch (Exception ex) {
}
}
}