]> git.proxmox.com Git - rustc.git/blame - src/test/ui/typeck/issue-79040.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / typeck / issue-79040.rs
CommitLineData
6a06907d
XL
1fn main() {
2 const FOO = "hello" + 1; //~ ERROR cannot add `{integer}` to `&str`
dc3f5686 3 //~^ missing type for `const` item
6a06907d
XL
4 println!("{}", FOO);
5}