mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
62ba3e70a1
The previous output was unintuitive to users.
8 lines
180 B
Rust
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]`
|
|
}
|