blob: 0c8c4ff70441a33fef87eefd1ef2156dff625bed [file] [log] [blame]
interface IA {
}
interface IB {
}
class Impl implements IA, IB {
public static IA createInstance() {
final Impl instance = new Impl();
return instance;
}
}