summary refs log tree commit diff
path: root/src/test/run-pass/ext-expand-inner-exprs.rs
blob: a32b3d7f002b8f422077e809c17d698ac468e396 (plain)
1
2
3
4
5
static FOO : &'static str = concat!(concat!("hel", "lo"), "world");

pub fn main() {
    assert_eq!(FOO, "helloworld");
}