1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-08-14 02:10:40 +02:00
org.aspectj/tests/bugs162/pr210114/TestAspect.java

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