]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binding/match-unsized.rs
Merge commit '6ed6f1e6a1a8f414ba7e6d9b8222e7e5a1686e42' into clippyup
[rust.git] / src / test / ui / binding / match-unsized.rs
1 // run-pass
2 fn main() {
3     let data: &'static str = "Hello, World!";
4     match data {
5         &ref xs => {
6             assert_eq!(data, xs);
7         }
8     }
9 }