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 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected type `i32`
2016-07-28 16:49:31 +00:00
//~| found type `[{integer}; 3]`
//~| expected i32, found array of 3 elements
let x: &[i32] = &[1, 2, 3];
2015-01-31 16:23:42 +00:00
let _y: &i32 = x;
2015-01-12 06:01:44 +00:00
//~^ ERROR mismatched types
//~| expected type `&i32`
//~| found type `&[i32]`
//~| expected i32, found slice
}