Guest User

Untitled

a guest
Jan 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #![warn(clippy::use_self)]
  2.  
  3. mod foo {
  4. pub struct Bar {}
  5. }
  6.  
  7. fn main() {}
  8.  
  9. impl Default for foo::Bar {
  10. fn default() -> foo::Bar {
  11. foo::Bar{}
  12. }
  13. }
Add Comment
Please, Sign In to add comment