rust/tests/source/issue-3532.rs

8 lines
96 B
Rust
Raw Normal View History

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