mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 12:08:13 +00:00
12 lines
206 B
Rust
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") }
|
|
}
|
|
}
|