publicclassPR320{publicstaticvoidmain(String[]args){//org.aspectj.testing.Tester.check(false, "Shouldn't have compiled!");org.aspectj.testing.Tester.check(true,"OK to compile by 08b1!");}}classProduct1{}aspectProduct1Aspectpertarget(target(Product1)){pointcutinstance(Product1p):target(p);before(Product1p):instance(p){System.out.println("Im am instance of product1");}}