Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #![deny(unreachable_pub)]
  2.  
  3. pub use self::m1::{Item1, Item2};
  4.  
  5. mod m1 {
  6.  
  7. pub use self::m2::{Item1, Item2};
  8.  
  9. mod m2 {
  10. pub struct Item1;
  11. pub struct Item2;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement