Guest User

Untitled

a guest
Mar 23rd, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #![feature(never_type)]
  2.  
  3. fn assert_copy<T:Copy>(){}
  4. fn assert_clone<T:Clone>(){}
  5.  
  6. fn main() {
  7. assert_copy::<!>();
  8. assert_clone::<!>();
  9. }
Add Comment
Please, Sign In to add comment