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