(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
lifetime1.rs
fn foo<'a>(t: &'a str) -> &'a str {
    t
}

fn main() {
    foo("hello world");
}