aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features1611/declareMinus/aspectjtest/HelloTest.java
blob: a6eb3678e7c2726226be3fcfc0aef6fedea7d28b (plain)
1
2
3
4
5
6
7
8
9
10
package aspectjtest;


public class HelloTest {
public static void main(String []argv) throws Exception {
		System.out.println( MyEntity.class.getDeclaredField("myField").getAnnotations().length);
// should be B
		System.out.println(MyEntity.class.getDeclaredField("myField").getAnnotations()[0].annotationType());
	}
}