Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #![crate_type="dylib"]
  2.  
  3. pub fn outer() {
  4. mod inner {
  5. pub fn innermost() {}
  6. }
  7.  
  8. inner::innermost();
  9. }
Add Comment
Please, Sign In to add comment