about summary refs log tree commit diff
path: root/tests/ui/bare-static-string.rs
blob: b71cf38cfe819425aea2066a04d8b633b18d6ff6 (plain)
1
2
3
4
5
6
//@ run-pass

pub fn main() {
    let x: &'static str = "foo";
    println!("{}", x);
}