Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
#![feature(string_deref_patterns)]
fn main() {
match <_ as Default>::default() {
"" => (),
_ => unreachable!(),
}