rust/tests/ui/binding/match-ref-unsized.rs
2023-01-11 09:32:08 +00:00

12 lines
206 B
Rust

// run-pass
// Binding unsized expressions to ref patterns
pub fn main() {
let ref a = *"abcdef";
assert_eq!(a, "abcdef");
match *"12345" {
ref b => { assert_eq!(b, "12345") }
}
}