2013-06-07 15:06:36 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// 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
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `(isize, f64)`
|
2016-07-28 11:49:31 -05:00
|
|
|
//~| found type `(isize, f64, {integer})`
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected a tuple with 2 elements, found one with 3 elements
|
2014-10-23 15:48:32 -05:00
|
|
|
|
|
|
|
let y = first ((1,));
|
2015-01-12 00:01:44 -06:00
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `(isize, f64)`
|
|
|
|
//~| found type `(isize,)`
|
|
|
|
//~| expected a tuple with 2 elements, found one with 1 elements
|
2013-06-07 15:06:36 -05:00
|
|
|
}
|