blob: ecd9c9fd694dc0a432c9fefd2141697879316f4f [file] [log] [blame]
import java.lang.annotation.Annotation;
import org.checkerframework.checker.nullness.qual.NonNull;
public class DotClass {
void test() {
doStuff(NonNull.class);
}
void doStuff(Class<? extends Annotation> cl) {}
void access() {
Object.class.toString();
int.class.toString();
}
}