blob: db0eab4ddd540186f8a1e3b39ea02c3ff5727f30 [file] [log] [blame]
package org.checkerframework.framework.testchecker.util;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
import org.checkerframework.framework.qual.SubtypeOf;
/** A subtype of SuperQual. */
@SubtypeOf(SuperQual.class)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
public @interface SubQual {}