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

8 lines
180 B
Rust

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