rust/tests/ui/macros/macro-of-higher-order.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
492 B
Rust
Raw Normal View History

// run-pass
macro_rules! higher_order {
2014-10-12 11:42:41 +00:00
(subst $lhs:tt => $rhs:tt) => ({
macro_rules! anon { $lhs => $rhs }
anon!(1_usize, 2_usize, "foo")
2014-10-12 11:42:41 +00:00
});
}
2016-07-19 20:16:23 +00:00
macro_rules! outer {
($x:expr; $fragment:ident) => {
macro_rules! inner { ($y:$fragment) => { $x + $y } }
}
}
fn main() {
2014-10-12 11:42:41 +00:00
let val = higher_order!(subst ($x:expr, $y:expr, $foo:expr) => (($x + $y, $foo)));
assert_eq!(val, (3, "foo"));
2016-07-19 20:16:23 +00:00
outer!(2; expr);
assert_eq!(inner!(3), 5);
}