(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
str1.rs
fn main() {
    let a;
    a = "hello world infer";

    let b: &str;
    b = "hello world specified";
}