rust/src/test/ui/tuple/tuple-arity-mismatch.rs

18 lines
497 B
Rust
Raw Normal View History

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