rust/tests/ui/lifetimes/tail-expr-in-nested-expr.rs
2024-10-24 01:56:08 +08:00

8 lines
171 B
Rust

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