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