blob: 3c204d9b94a3127ad40e099fd9d47c5196bdd330 [file] [log] [blame]
import org.checkerframework.checker.interning.qual.Interned;
public class Creation2 {
@Interned class Baz {
@SuppressWarnings({"inconsistent.constructor.type", "super.invocation"})
@Interned Baz() {}
}
void test() {
Baz b = new Baz();
}
}