mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-14 16:03:17 +00:00
10 lines
208 B
Rust
10 lines
208 B
Rust
//@ edition: 2024
|
|
//@ compile-flags: -Zunstable-options
|
|
|
|
#![feature(shorter_tail_lifetimes)]
|
|
|
|
fn main() {
|
|
let _ = { String::new().as_str() }.len();
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
}
|