001package typequals.vindex.qual;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Target;
005import org.checkerframework.framework.qual.LiteralKind;
006import org.checkerframework.framework.qual.QualifierForLiterals;
007import org.checkerframework.framework.qual.SubtypeOf;
008
009@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
010@SubtypeOf({ValueIndex.class, VarIndex.class, VIndexUnqualified.class})
011@QualifierForLiterals(LiteralKind.INT)
012public @interface VIndexBottom {}