rust/tests/crashes/123810.rs
2024-04-18 06:13:47 +02:00

11 lines
181 B
Rust

//@ known-bug: #123810
//@ compile-flags: -Zlint-mir
fn temp() -> (String, i32) {
(String::from("Hello"), 1)
}
fn main() {
let f = if true { &temp() } else { &temp() };
}