2014-08-30 01:32:14 -05:00
|
|
|
fn main() {
|
2015-03-03 02:42:26 -06:00
|
|
|
let _x: i32 = [1, 2, 3];
|
2015-01-12 00:01:44 -06:00
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `i32`
|
2016-07-28 11:49:31 -05:00
|
|
|
//~| found type `[{integer}; 3]`
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected i32, found array of 3 elements
|
2014-08-30 01:32:14 -05:00
|
|
|
|
2015-03-03 02:42:26 -06:00
|
|
|
let x: &[i32] = &[1, 2, 3];
|
2015-01-31 10:23:42 -06:00
|
|
|
let _y: &i32 = x;
|
2015-01-12 00:01:44 -06:00
|
|
|
//~^ ERROR mismatched types
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| expected type `&i32`
|
|
|
|
//~| found type `&[i32]`
|
|
|
|
//~| expected i32, found slice
|
2014-08-30 01:32:14 -05:00
|
|
|
}
|