summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/str1.rs
blob: 088827853d81d3e54f687270aabfa1c2d48f9d1c (plain)
1
2
3
4
5
6
7
fn main() {
    let a;
    a = "hello world infer";

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