mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-01 15:50:05 +03:00
10 lines
149 B
Rust
10 lines
149 B
Rust
//@ check-pass
|
|
#![feature(deref_patterns)]
|
|
|
|
fn main() {
|
|
match <_ as Default>::default() {
|
|
"" => (),
|
|
_ => unreachable!(),
|
|
}
|
|
}
|