mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 14:13:38 +00:00
10 lines
148 B
Rust
10 lines
148 B
Rust
|
// check-pass
|
||
|
#![feature(deref_patterns)]
|
||
|
|
||
|
fn main() {
|
||
|
match <_ as Default>::default() {
|
||
|
"" => (),
|
||
|
_ => unreachable!(),
|
||
|
}
|
||
|
}
|