blob: aa6872f8bd796a10c54a2ac2c2023cc31c02a057 [file] [log] [blame]
package org.checkerframework.framework.testchecker.typedecldefault.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.PolymorphicQualifier;
/** A polymorphic qualifier for the TyepDeclDefault type system. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@PolymorphicQualifier
public @interface PolyTypeDeclDefault {}