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

21 řádky
363 B
Java
Surový Normální zobrazení Historie

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) {
}
}
}