Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
enum S {
A,
}
fn bug(l: S) {
match l {
S::B {} => {}, //~ ERROR no variant named `B` found for enum `S`
fn main () {}