blob: 4a9b9432ce98c5b47172c2b905561a1a341289bd [file] [log] [blame]
class AnonymousTest1 {
interface Thing {
boolean thing();
}
void dupeHolder() {
duplicator(false);
}
void duplicator(final boolean thingReturn) {
if (new Thing() {
public boolean thing() {
return thingReturn;
}
}.thing());
}
}