<p><pre><code> const grent = match (passwd::getgroup(group)) {
void => fmt::fatal("No '{}' group available", group),
gr: passwd::grent => gr,
};
</code></pre>
Interesting, is void being used as the "None" of an option type here? At least that's what it looks like to me.