mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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") }
|
|
}
|
|
}
|