package jetbrains.mps.internalCollections.test.closures; /*Generated by MPS */ public interface IFoo { Iterable<? extends IBar> get(); class Foo implements IFoo { public Foo() { } @Override public Iterable<IBar.Bar> get() { return null; } } }