Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. #![allow(unreachable_code)]
  2.  
  3.  
  4. fn main() {
  5. println!("{:?}", {
  6. let num = 5; let r1 = &num as *const i32; let r2 = &mut num as *mut i32; unsafe { println!("r1 is: {}", *r1); println!("r2 is: {}", *r2); }
  7. });
  8. }
  9.  
  10.  
  11. /* ~~~~=== stderr ===~~~~
  12. Compiling playground v0.0.1 (/playground)
  13. error[E0596]: cannot borrow `num` as mutable, as it is not declared as mutable
  14. --> src/main.rs:6:60
  15. |
  16. 6 | let num = 5; let r1 = &num as *const i32; let r2 = &mut num as *mut i32; unsafe { println!("r1 is: {}", *r1); println!("r2 is: {}", *r2); }
  17. | --- ^^^^^^^^ cannot borrow as mutable
  18. | |
  19. | help: consider changing this to be mutable: `mut num`
  20.  
  21. error: aborting due to previous error
  22.  
  23. For more information about this error, try `rustc --explain E0596`.
  24. error: Could not compile `playground`.
  25.  
  26. To learn more, run the command again with --verbose.
  27.  
  28. */
  29.  
  30. /* ~~~~=== stdout ===~~~~
  31.  
  32. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement