summary refs log tree commit diff
path: root/src/test/run-pass/syntax-extension-minor.rs
blob: 4ef78a1eb98d74e712df01caa110e25465690b1f (plain)
1
2
3
4
5
6
7
8

fn main() {
    let asdf_fdsa = ~"<.<";
    assert (concat_idents!(asd, f_f, dsa) == ~"<.<");

    assert (ident_to_str!(use_mention_distinction) ==
                ~"use_mention_distinction");
}