blob: 95019a6f22273cb469377bebe00ecf5820ac8873 [file] [log] [blame]
//@ run-pass
fn main() {
let data: &'static str = "Hello, World!";
match data {
&ref xs => {
assert_eq!(data, xs);
}
}
}