mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +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
|
||
|
}
|