blob: 9151a8246fa212e90f3b896a93c6858a06018717 [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<Clazz>() {
public Clazz create() { return null; }
public void save(Clazz obj) { }
};
}
}
}
public class Clazz implements IntF {
}