blob: 3b94b1051c9b7cd398894ae47664f06e8f2c7768 [file] [log] [blame]
//! Test nested macro expansion with concat! macros
//@ run-pass
static FOO : &'static str = concat!(concat!("hel", "lo"), "world");
pub fn main() {
assert_eq!(FOO, "helloworld");
}