rust/src/test/run-pass/ext-expand-inner-exprs.rs
2018-12-25 21:08:33 -07:00

6 lines
122 B
Rust

static FOO : &'static str = concat!(concat!("hel", "lo"), "world");
pub fn main() {
assert_eq!(FOO, "helloworld");
}