blob: ad5dffbf7d2401590d68bfa1611de15bb64d0080 [file] [log] [blame]
interface IntF {
}
interface Factory<E extends IntF> {
E create();
void save(E obj);
static class helper {
static Factory<IntF> get2() {
return (Factory)new Factory<IntF>() {
public IntF create() { return null; }
public void save(IntF obj) { }
};
}
}
}
public class Clazz implements IntF {
}