Advertisement
Guest User

Untitled

a guest
May 26th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #![allow(unused_variables)]
  2.  
  3. mod foo {
  4. struct Bar;
  5. }
  6.  
  7. mod chocolate {
  8. struct Bar;
  9. }
  10.  
  11. fn main() {
  12. let foo = foo::Bar;
  13. let chocolate = chocolate::Bar;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement