box-o-sand/rustbyexample/flow_control.d/if_let3.rs

12 lines
125 B
Rust
Raw Normal View History

2023-09-30 23:39:55 +00:00
enum Foo {
Bar,
}
fn main() {
let a = Foo::Bar;
if let Foo::Bar = a {
println!("a is foobar");
}
}