rust/tests/ui/lifetimes/tail-expr-in-nested-expr.rs

8 lines
171 B
Rust
Raw Normal View History

//@ edition: 2024
//@ compile-flags: -Zunstable-options
fn main() {
let _ = { String::new().as_str() }.len();
//~^ ERROR temporary value dropped while borrowed
}