Rollup merge of #27343 - steveklabnik:fix_module, r=alexcrichton

This commit is contained in:
Steve Klabnik 2015-07-29 10:30:35 -04:00
commit 8b82470456

View File

@ -521,9 +521,6 @@ of `foo` relative to where we are. If thats prefixed with `::`, as in
`::foo::bar()`, it refers to a different `foo`, an absolute path from your
crate root.
Also, note that we `pub use`d before we declared our `mod`s. Rust requires that
`use` declarations go first.
This will build and run:
```bash