Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. error: cannot declare a new module at this location
  2. --> src/main.rs:6:5
  3. |
  4. 6 | mod say;
  5. | ^^^
  6. |
  7. note: maybe move this module `src` to its own directory via `src/mod.rs`
  8. --> src/main.rs:6:5
  9. |
  10. 6 | mod say;
  11. | ^^^
  12. note: ... or maybe `use` the module `say` instead of possibly redeclaring it
  13. --> src/main.rs:6:5
  14. |
  15. 6 | mod say;
  16. | ^^^
  17.  
  18. error: aborting due to previous error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement