mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
8 lines
96 B
Rust
8 lines
96 B
Rust
fn foo(a: T) {
|
|
match a {
|
|
1 => {}
|
|
0 => {}
|
|
// _ => panic!("doesn't format!"),
|
|
}
|
|
}
|