rust/tests/ui/coercion/coercion-slice.rs

9 lines
220 B
Rust

// Tests that we forbid coercion from `[T; n]` to `&[T]`
fn main() {
let _: &[i32] = [0];
//~^ ERROR mismatched types
//~| NOTE expected `&[i32]`, found `[{integer}; 1]`
//~| NOTE expected due to this
}