1 2 3 4 5 6 7 8 9
// check-pass #![feature(string_deref_patterns)] fn main() { match <_ as Default>::default() { "" => (), _ => unreachable!(), } }