import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

public class Main {
    
    @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
    public @interface annotation { }
    
    public static void main(String[] args) {
        int[] array = new int[(@annotation int) Integer.MIN_VALUE];
    }
    
} 