Guest User

Untitled

a guest
May 27th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #![crate_type = "rlib"]
  2. #![feature(rust_2018_preview)]
  3. #![warn(rust_2018_compatibility)]
  4. #![allow(unused_imports, dead_code)]
  5.  
  6. mod foo {}
  7. mod bar {}
  8.  
  9.  
  10. fn main() {
  11. use {foo::{}, bar::{}};
  12. }
Add Comment
Please, Sign In to add comment