blob: 6b42870fbfe77d5880f68267856360b40a60b26e [file] [log] [blame]
package org.checkerframework.framework.testchecker.testaccumulation.qual;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.checkerframework.framework.qual.SubtypeOf;
import org.checkerframework.framework.qual.TargetLocations;
import org.checkerframework.framework.qual.TypeUseLocation;
/** A test bottom type for an accumulation type system. */
@SubtypeOf({TestAccumulation.class, TestAccumulationPredicate.class})
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@TargetLocations({TypeUseLocation.EXPLICIT_LOWER_BOUND, TypeUseLocation.EXPLICIT_UPPER_BOUND})
public @interface TestAccumulationBottom {}