Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![deny(unused)]
struct F;
struct B;
enum E {
Foo(F),
Bar(B), //~ ERROR variant `Bar` is never constructed
}
fn main() {
let _ = E::Foo(F);