mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
7 lines
146 B
Rust
7 lines
146 B
Rust
// check-fail
|
|
fn main() {
|
|
let _: &str = & { String::from("hahah")};
|
|
let _: &i32 = & { Box::new(1i32) };
|
|
//~^ ERROR mismatched types
|
|
}
|