summaryrefslogtreecommitdiffstats
path: root/tests/bugs170/sanity/DeclareAtType.java
blob: 44f60b63329f28f99d1b95794937a844d51196a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package foo;

@interface MyAnnotation {	
}

public aspect DeclareAtType {

	declare @type : C : @MyAnnotation;
	
}

class C {
	
}