Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. #![allow(unreachable_code)]
  2.  
  3.  
  4. fn main() {
  5. println!("{:?}", {
  6. let v: &u8 = &0; let w: *const i8 = v.as_ptr().cast<i8>(); let y: &i8 = &*w; y
  7. });
  8. }
  9.  
  10.  
  11. /* ~~~~=== stderr ===~~~~
  12. Compiling playground v0.0.1 (/playground)
  13. error: chained comparison operators require parentheses
  14. --> src/main.rs:6:60
  15. |
  16. 6 | let v: &u8 = &0; let w: *const i8 = v.as_ptr().cast<i8>(); let y: &i8 = &*w; y
  17. | ^^^^^
  18. |
  19. = help: use `::<...>` instead of `<...>` if you meant to specify type arguments
  20. = help: or use `(...)` if you meant to specify fn arguments
  21.  
  22. error: aborting due to previous error
  23.  
  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