Guest User

Untitled

a guest
Sep 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. mod inner {
  2. const _FOO: () = {
  3. mod some_mod {
  4. pub struct Bar;
  5. }
  6.  
  7. use self::some_mod::Bar;
  8.  
  9. fn foo(_: self::some_mod::Bar) -> () {}
  10. };
  11.  
  12. }
  13.  
  14. fn main() {
  15. println!("Hello, world!");
  16. }
Add Comment
Please, Sign In to add comment