]> git.proxmox.com Git - rustc.git/blame - src/test/ui/ext-expand-inner-exprs.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / ext-expand-inner-exprs.rs
CommitLineData
416331ca
XL
1// run-pass
2
1a4d82fc 3static FOO : &'static str = concat!(concat!("hel", "lo"), "world");
223e47cc
LB
4
5pub fn main() {
1a4d82fc 6 assert_eq!(FOO, "helloworld");
223e47cc 7}