mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-15 18:03:33 +00:00
9 lines
220 B
Rust
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
|
|
}
|