Guest User

Untitled

a guest
Jun 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. unsafe fn dont_call_me() -> ! {
  2. std::mem::transmute(())
  3. }
  4.  
  5. fn main() {
  6. unsafe {
  7. println!("{:?}", dont_call_me());
  8. }
  9. }
Add Comment
Please, Sign In to add comment