blob: 0e6ddd85eb5db995e8a9d1f6da5bd5941c13b2a7 [file] [log] [blame]
package com.siyeh.igtest.bugs.class_new_instance;
public class ClassNewInstance {
void good() throws IllegalAccessException, InstantiationException {
String.class.newInstance();
}
Object newInstance() {
return null;
}
void bad() {
newInstance();
}
void alsoBad(XX xx) {
xx.newInstance();
}
}