summaryrefslogtreecommitdiffstats
path: root/tests/bugs/interfaceLibrary/LibraryClassAspect.java
blob: ff65af6e3dc11ecf5f33b8590c86447ea6b5fcca (plain)
1
2
3
4
5
6
7
8
import java.io.IOException;

aspect LibraryClassAspect {
    public void lib.LibraryClass.run() throws IOException {
        throw new IOException("LibraryClassAspect-defined run() for " + this);
    }
}