7 lines
104 B
Rust
7 lines
104 B
Rust
|
fn foo(a: T) {
|
||
|
match a {
|
||
|
1 => {}
|
||
|
0 => {} // _ => panic!("doesn't format!"),
|
||
|
}
|
||
|
}
|