mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
153 B
Rust
15 lines
153 B
Rust
enum Foo {}
|
|
|
|
impl Foo {
|
|
const B: u8 = 0;
|
|
}
|
|
|
|
fn bar(foo: Foo) -> u32 {
|
|
match foo {
|
|
Foo::B(i) => i, //~ ERROR E0164
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
}
|