org.aspectj/tests/errors/MissingExposure.java

16 lines
333 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
public class MissingExposure {
public static void main(String[] args) {
C c = new C();
org.aspectj.testing.Tester.check(false, "shouldn't have compiled");
}
}
class C {
int _int = 13;
}
aspect Aspect {
pointcut crash(byte _new): set(int C._int) && args(int);
before(byte _new): crash(_new) {}
}