Skip to content

Instantly share code, notes, and snippets.

Created July 29, 2016 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c9fdeac8397d32c4ddd9ba4a8d54fa3f to your computer and use it in GitHub Desktop.
Save anonymous/c9fdeac8397d32c4ddd9ba4a8d54fa3f to your computer and use it in GitHub Desktop.
Shared via Rust Playground
#![feature(trace_macros)]#![feature(type_macros)]
trace_macros!(true);
macro_rules! example{
(@as_type $t:ty) => {$t};
() => {};
(>>) => {
> >
};
($a:tt $($b:tt)*) => {
example!(@as_type $a)
example!($($b)*)
};
}
fn main(){
let a = example!(A<B<C>>);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment