rust/tests/ui/issues/issue-34209.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
144 B
Rust
Raw Normal View History

enum S {
A,
}
fn bug(l: S) {
match l {
S::B {} => {}, //~ ERROR no variant named `B` found for enum `S`
}
}
fn main () {}