rust/tests/ui/coercion/coercion-slice.rs
2023-01-11 09:32:08 +00:00

8 lines
186 B
Rust

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