blob: 7b148ede0e6926039aeabb78a8e0950b3ae5d84c [file] [log] [blame]
package org.checkerframework.framework.testchecker.variablenamedefault.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 VariableNameDefault type system. */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@PolymorphicQualifier
public @interface PolyVariableNameDefault {}