Skip to content

Instantly share code, notes, and snippets.

@bjorn3
Forked from anonymous/playground.rs
Last active August 1, 2016 10:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
replace >> with > >
#![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