aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/ataspectj/annotationGen/Simple14AspectTest.java
blob: d92eb61987d7e72f52266ebc231abdda70a429b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
import org.aspectj.lang.annotation.Aspect;
import java.lang.annotation.*;

public class Simple14AspectTest {

	public static void main(String[] args) {
		Annotation[] annotations = Simple14Aspect.class.getAnnotations();
		if (annotations.length != 0) throw new RuntimeException("Should have no annotations");
	}

}