Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #[macro_use]
  2. pub mod m {
  3. #[macro_export]
  4. macro_rules! foo {
  5. () => (());
  6. }
  7. }
  8.  
  9. fn main() {
  10. let _ = foo!();
  11. println!("Hello, world!");
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement