rust/tests/ui/coercion/coerce-block-tail-83850.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
106 B
Rust
Raw Normal View History

2022-10-16 20:03:23 +00:00
// check-fail
fn f(_: &[i32]) {}
fn main() {
f(&Box::new([1, 2]));
//~^ ERROR mismatched types
}