rust/tests/ui/deref-patterns/default-infer.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
156 B
Rust
Raw Normal View History

2022-07-13 18:13:07 +00:00
//@ check-pass
2022-11-11 14:31:07 +00:00
#![feature(string_deref_patterns)]
2022-07-13 18:13:07 +00:00
fn main() {
match <_ as Default>::default() {
"" => (),
_ => unreachable!(),
}
}