rust/src/test/run-pass/syntax-extension-minor.rs

9 lines
197 B
Rust
Raw Normal View History

fn main() {
let asdf_fdsa = ~"<.<";
2012-08-22 17:24:52 -07:00
assert (concat_idents!(asd, f_f, dsa) == ~"<.<");
2012-08-22 17:24:52 -07:00
assert (ident_to_str!(use_mention_distinction) ==
~"use_mention_distinction");
}