blob: 5ef4ff25ed9d5ec4c817fe5cbb8ad77e92d5ede1 [file] [log] [blame]
class ReturnVoidTest {
interface Thing {
boolean thing();
}
void dupeHolder() {
duplicator(false);
}
void duplicator(final boolean thingReturn) {
if (thingReturn ) return;
}
}