blob: 5bbdf5ec956085fd5523f29874084a8ee61bdafd [file] [log] [blame]
// run-pass
static FOO : &'static str = concat!(concat!("hel", "lo"), "world");
pub fn main() {
assert_eq!(FOO, "helloworld");
}