Guest User

Untitled

a guest
Jun 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. macro_rules! foo {
  2. ( { } ) => {
  3. 1
  4. }
  5. }
  6.  
  7. fn main() {
  8. let x = foo!({});
  9. println!("{}", x)
  10. }
Add Comment
Please, Sign In to add comment