blob: 4936cc18c8e5247051e0305cd5d927ed1651d53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package fluffy.bunny.rocks;
import foo.*;
import fluffy.*;
import fluffy.bunny.*;
public aspect UseThisAspectForLinkCheckToo {
before(): execution(* *..*(..)) {
System.err.println("yo");
}
}
|