org.aspectj/tests/new/BindingInNotCf.java
2002-12-16 18:51:06 +00:00

15 lines
362 B
Java

/**
* AspectJ should have a rule that binding parameters lexically
* within a ! is always an error. These test some of the most
* obvious forms of that.
*/
public aspect BindingInNotCf {
pointcut pc1(Object o): this(o);
pointcut pc2(Object o): !this(o); //CE
pointcut pc3(Object o): !pc2(o); //CE
pointcut pc4(Object o): !!pc1(o); //CE
}