about summary refs log tree commit diff
path: root/tests/ui/lifetimes/tail-expr-in-nested-expr.rs
blob: 741cdacdb1d5f77b65b55f371ad48c4602c215d3 (plain)
1
2
3
4
5
6
//@ edition: 2024

fn main() {
    let _ = { String::new().as_str() }.len();
    //~^ ERROR temporary value dropped while borrowed
}