class Constructors {
public void testConstructor() throws Exception {
class X {
X() {}
X(String a) {}
}
X.class.getDeclaredConstructor();
X.class.getDeclaredConstructor(String.class);
X.class.getDeclaredConstructor(Constructors.class);
X.class.getDeclaredConstructor(Constructors.class, String.class);
}
}