blob: 53784ebb9fcfcc82f7142fdf5f2442c44b4e1087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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") }
}
}
|