about summary refs log tree commit diff
path: root/tests/ui/binding/match-unsized.rs
blob: 95019a6f22273cb469377bebe00ecf5820ac8873 (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);
        }
    }
}