blob: b2974546e490158aa93be99a166f916bda78d51c [file] [log] [blame]
import org.checkerframework.checker.interning.qual.Interned;
public class InternedClassDecl {
static @Interned class InternedClass {}
static class Generic<T extends InternedClass, S extends T> {}
static @Interned class RecursiveClass2<G extends RecursiveClass2<G>> {}
}