rust/tests/ui/coercion/coerce-block-tail-83850.rs
2023-01-11 09:32:08 +00:00

8 lines
106 B
Rust

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