mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
144 B
Rust
12 lines
144 B
Rust
enum S {
|
|
A,
|
|
}
|
|
|
|
fn bug(l: S) {
|
|
match l {
|
|
S::B {} => {}, //~ ERROR no variant named `B` found for enum `S`
|
|
}
|
|
}
|
|
|
|
fn main () {}
|