blob: 0d8b97357bb502c21af3d066192920ee5c9df45b [file] [log] [blame]
package org.checkerframework.framework.testchecker.lubglb.quals;
import java.lang.annotation.Documented;
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;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@SubtypeOf({C.class, B.class})
public @interface D {}