rust/tests/ui/coercion/coerce-block-tail-83850.rs
2024-02-16 20:02:50 +00:00

8 lines
107 B
Rust

//@ check-fail
fn f(_: &[i32]) {}
fn main() {
f(&Box::new([1, 2]));
//~^ ERROR mismatched types
}