importorg.aspectj.lang.annotation.Aspect;importjava.lang.annotation.*;publicclassSimple14AspectTest{publicstaticvoidmain(String[]args){Annotation[]annotations=Simple14Aspect.class.getAnnotations();if(annotations.length!=0)thrownewRuntimeException("Should have no annotations");}}