Guest User

Untitled

a guest
Oct 16th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #![allow(unused)]
  2.  
  3. use std::io;
  4. use std::fs::{self, DirEntry};
  5. use std::path::Path;
  6.  
  7. trait A
  8. {
  9. fn stuff();
  10. }
  11.  
  12. struct B<T> where T : A
  13. {
  14. foo : Box<T>
  15. }
  16.  
  17. fn main()
  18. {
  19.  
  20. }
Add Comment
Please, Sign In to add comment