rust/tests/ui/binding/match-unsized.rs
2024-02-16 20:02:50 +00:00

10 lines
161 B
Rust

//@ run-pass
fn main() {
let data: &'static str = "Hello, World!";
match data {
&ref xs => {
assert_eq!(data, xs);
}
}
}