1
0
espelhamento de https://github.com/eclipse-aspectj/aspectj.git sincronizado 2024-07-22 21:09:41 +02:00
org.aspectj/tests/errors/PR348.java
2002-12-16 18:51:06 +00:00

18 linhas
423 B
Java

public class Mark {
public static void main(String[] args) {
new Mark().realMain(args);
}
public void realMain(String[] args) {
new Bug().go(null);
org.aspectj.testing.Tester.check(false, "shouldn't have compiled");
}
}
class Bug {
void go(String s){}
}
aspect A {
pointcut p1(String s, int y): calls (* *.go(s)) && within(*);
before(String y2, int y): p1(y2, int) {}
}