org.aspectj/tests/design/intro/ExceptionsCF.java
jhugunin d3156f737f added coverage for exceptions thrown from intro methods
these tests were inspired by failures compiling observer example
2002-12-24 00:34:05 +00:00

25 lines
430 B
Java

import org.aspectj.testing.Tester;
import java.io.IOException;
public class ExceptionsCF {
public static void main(String[] args) {
C c = new C();
c.foo(); // ERR: can't throw IOException here
}
}
class Root {
public void bar() {}
}
class C extends Root {
}
aspect A {
public void C.foo() throws IOException { }
public void C.bar() throws IOException {} // ERR: can't throw more than super
}