Advertisement
Guest User

Untitled

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