Guest User

Untitled

a guest
Mar 23rd, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #![feature(specialization)]
  2.  
  3. use std::fs::File;
  4.  
  5. trait Foo {}
  6. impl<T: Copy> Foo for T {}
  7. impl Foo for File {}
  8.  
  9. fn main() {}
Add Comment
Please, Sign In to add comment