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