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

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

12 lines
144 B
Rust
Raw Normal View History

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