summaryrefslogtreecommitdiff
path: root/test/files/pos/t7551/A.java
blob: 72aeb40fa07e02d4ea2b405d58ba66b32b86050e (plain) (blame)
1
2
3
4
5
6
7
8
9
package p;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface A {
    Class<?> subInterface();
}