rust/tests/ui/traits/next-solver/borrowck-error.rs

12 lines
201 B
Rust

//@ compile-flags: -Znext-solver
use std::collections::HashMap;
fn foo() -> &'static HashMap<i32, i32>
{
&HashMap::new()
//~^ ERROR cannot return reference to temporary value
}
fn main() {}