1
0
espelhamento de https://github.com/eclipse-aspectj/aspectj.git sincronizado 2024-08-27 05:54:38 +02:00
org.aspectj/tests/new/PR320.java
2002-12-16 18:51:06 +00:00

15 linhas
437 B
Java

public class PR320 {
public static void main(String[] args) {
//org.aspectj.testing.Tester.check(false, "Shouldn't have compiled!");
org.aspectj.testing.Tester.check(true, "OK to compile by 08b1!");
}
}
class Product1 {}
aspect Product1Aspect pertarget(target(Product1)){
pointcut instance(Product1 p): target(p);
before(Product1 p): instance(p) {
System.out.println("Im am instance of product1");
}
}