blob: e326017021023f7bcd0f91cdbb08055f79c617a8 [file] [log] [blame]
import java.io.PrintStream;
class Foo {
public static void bazz(int i) {
Foo j = new Foo(new IBar() {
public void doSomething(PrintStream out) {
out.println("hello");
}
});
final Foo foo = i != 0 ? j : j;
foo.bla();
}
private final IBar bar;
public Foo(IBar bar) {
this.bar = bar;
}
public void bla() {
bar.doSomething(System.out);
}
public interface IBar {
void doSomething(PrintStream out);
}
}