rust/tests/ui/issues/issue-16648.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
218 B
Rust
Raw Normal View History

// run-pass
fn main() {
let x: (isize, &[isize]) = (2, &[1, 2]);
assert_eq!(match x {
(0, &[_, _]) => 0,
(1, _) => 1,
(2, &[_, _]) => 2,
(2, _) => 3,
_ => 4
2015-01-25 21:05:03 +00:00
}, 2);
}