blob: 53784ebb9fcfcc82f7142fdf5f2442c44b4e1087 [file] [log] [blame]
// 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") }
}
}