]> git.proxmox.com Git - rustc.git/blame - src/test/ui/bare-static-string.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / bare-static-string.rs
CommitLineData
416331ca
XL
1// run-pass
2
223e47cc
LB
3pub fn main() {
4 let x: &'static str = "foo";
1a4d82fc 5 println!("{}", x);
223e47cc 6}