rust/src/test/ui/array-not-vector.rs

15 lines
371 B
Rust
Raw Normal View History

fn main() {
let _x: i32 = [1, 2, 3];
2015-01-12 00:01:44 -06:00
//~^ ERROR mismatched types
//~| expected type `i32`
2016-07-28 11:49:31 -05:00
//~| found type `[{integer}; 3]`
//~| expected i32, found array of 3 elements
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
//~| expected type `&i32`
//~| found type `&[i32]`
//~| expected i32, found slice
}