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

7 lines
147 B
Rust

//@ check-fail
fn main() {
let _: &str = & { String::from("hahah")};
let _: &i32 = & { Box::new(1i32) };
//~^ ERROR mismatched types
}