Skip to content

Instantly share code, notes, and snippets.

@jbclements
Created May 29, 2013 19:31
Show Gist options
  • Save jbclements/5673105 to your computer and use it in GitHub Desktop.
Save jbclements/5673105 to your computer and use it in GitHub Desktop.
macro_rules! g (
() =>
({
macro_rules! f(($y:ident)=>
({
let $y=3;
$y
}));
f!(z)
}))
fn a() {
g!();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment