blob: c9e097aefe1ad72822258bc284b8f44a131f6728 [file] [log] [blame]
// "Make 'Foo' implement 'Foo.Bar'" "true"
public class Foo implements Foo.Bar {
public Bar getBar() {
return this;
}
public interface Bar {}
}