rust/tests/ui/tuple/tuple-arity-mismatch.rs

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

18 lines
501 B
Rust
Raw Normal View History

2013-06-07 20:06:36 +00:00
// Issue #6155
2014-12-06 02:12:25 +00:00
fn first((value, _): (isize, f64)) -> isize { value }
2013-06-07 20:06:36 +00:00
fn main() {
2014-08-06 09:59:40 +00:00
let y = first ((1,2.0,3));
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected tuple `(isize, f64)`
//~| found tuple `(isize, f64, {integer})`
//~| expected a tuple with 2 elements, found one with 3 elements
let y = first ((1,));
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected tuple `(isize, f64)`
//~| found tuple `(isize,)`
//~| expected a tuple with 2 elements, found one with 1 element
2013-06-07 20:06:36 +00:00
}