summaryrefslogtreecommitdiffstats
path: root/tests/ui/binding/match-unsized.rs
blob: 41937a557ef72ae6332318d32f70711e48be3977 (plain)
1
2
3
4
5
6
7
8
9
// run-pass
fn main() {
    let data: &'static str = "Hello, World!";
    match data {
        &ref xs => {
            assert_eq!(data, xs);
        }
    }
}