The closing semicolon of the match {} is not warned against by Rusts nor Clippy: ``` enum Foo { A, B } fn bar(f: Foo) { match f { Foo::A => {}, Foo::B => {}, }; } fn main() { bar(Foo::A); bar(Foo::B); } ```