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

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

58 lines
1.3 KiB
Rust
Raw Normal View History

#![feature(box_patterns)]
enum A { B, C }
fn main() {
match (true, false) {
A::B => (),
//~^ ERROR mismatched types
//~| expected `(bool, bool)`, found `A`
//~| expected tuple `(bool, bool)`
//~| found enum `A`
_ => ()
}
match (true, false) {
2014-02-05 22:33:10 +00:00
(true, false, false) => ()
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected a tuple with 2 elements, found one with 3 elements
//~| expected tuple `(bool, bool)`
//~| found tuple `(_, _, _)`
}
match (true, false) {
(true, false, false) => ()
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected a tuple with 2 elements, found one with 3 elements
//~| expected tuple `(bool, bool)`
//~| found tuple `(_, _, _)`
}
match (true, false) {
box (true, false) => ()
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected tuple `(bool, bool)`
//~| found struct `Box<_>`
}
match (true, false) {
2014-02-05 22:33:10 +00:00
&(true, false) => ()
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected `(bool, bool)`, found `&_`
//~| expected tuple `(bool, bool)`
//~| found reference `&_`
}
let v = [('a', 'b') //~ ERROR expected function, found `(char, char)`
('c', 'd'),
('e', 'f')];
2015-01-31 17:20:46 +00:00
for &(x,y) in &v {} // should be OK
// Make sure none of the errors above were fatal
2015-01-12 06:01:44 +00:00
let x: char = true; //~ ERROR mismatched types
//~| expected `char`, found `bool`
}