blob: 1e439bf9d66b362d08d28602d4c6c6aa81e4d1e3 [file] [log] [blame]
import java.lang.annotation.*;
//OK
@Target({ElementType.TYPE})
@Expose @interface Expose {}
@Target({ElementType.FIELD})
<error descr="'@Expose1' not applicable to annotation type">@Expose1</error>@interface Expose1 {}