1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-09-02 17:55:19 +02:00
org.aspectj/tests/bugs150/PointcutsInInterfaces.aj
2005-08-25 12:52:12 +00:00

15 satır
194 B
Plaintext

public interface PointcutsInInterfaces {
public pointcut foo() : execution(* *(..));
}
class C {
void foo() {}
}
aspect A {
declare warning : PointcutsInInterfaces.foo() : "aha!";
}