rust/tests/ui/binding/match-pipe-binding.rs

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

61 lines
1.1 KiB
Rust
Raw Normal View History

// run-pass
2013-08-16 04:56:04 +08:00
fn test1() {
// from issue 6338
2015-01-26 05:05:03 +08:00
match ((1, "a".to_string()), (2, "b".to_string())) {
2013-08-16 04:56:04 +08:00
((1, a), (2, b)) | ((2, b), (1, a)) => {
2014-05-25 18:10:11 +08:00
assert_eq!(a, "a".to_string());
assert_eq!(b, "b".to_string());
2013-08-16 04:56:04 +08:00
},
_ => panic!(),
2013-08-16 04:56:04 +08:00
}
}
fn test2() {
2015-01-26 05:05:03 +08:00
match (1, 2, 3) {
2013-08-16 04:56:04 +08:00
(1, a, b) | (2, b, a) => {
assert_eq!(a, 2);
assert_eq!(b, 3);
},
_ => panic!(),
2013-08-16 04:56:04 +08:00
}
}
fn test3() {
2015-01-26 05:05:03 +08:00
match (1, 2, 3) {
2013-08-16 04:56:04 +08:00
(1, ref a, ref b) | (2, ref b, ref a) => {
assert_eq!(*a, 2);
assert_eq!(*b, 3);
},
_ => panic!(),
2013-08-16 04:56:04 +08:00
}
}
fn test4() {
2015-01-26 05:05:03 +08:00
match (1, 2, 3) {
2013-08-16 04:56:04 +08:00
(1, a, b) | (2, b, a) if a == 2 => {
assert_eq!(a, 2);
assert_eq!(b, 3);
},
_ => panic!(),
2013-08-16 04:56:04 +08:00
}
}
fn test5() {
2015-01-26 05:05:03 +08:00
match (1, 2, 3) {
2013-08-16 04:56:04 +08:00
(1, ref a, ref b) | (2, ref b, ref a) if *a == 2 => {
assert_eq!(*a, 2);
assert_eq!(*b, 3);
},
_ => panic!(),
2013-08-16 04:56:04 +08:00
}
}
pub fn main() {
2013-08-16 04:56:04 +08:00
test1();
test2();
test3();
test4();
test5();
}