mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 06:46:18 +00:00
8 lines
107 B
Rust
8 lines
107 B
Rust
//@ check-fail
|
|
fn f(_: &[i32]) {}
|
|
|
|
fn main() {
|
|
f(&Box::new([1, 2]));
|
|
//~^ ERROR mismatched types
|
|
}
|