blob: 03681f3b8617f009f5d21c4d0923fd113d7c7944 [file] [log] [blame]
interface Computable<T> {
T compute();
}
public class Zoo2 {
<T> T run(Computable<T> computable) {
}
{
if (run(new Computable<Boolean>() {
@Override
public Boolean compute() {
<selection>return null;</selection>
}
}))
}
}