Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #![allow(unreachable_code)]
  2.  
  3.  
  4. fn main() {
  5. println!("{:?}", {
  6. fn foo<'a>() -> &'a str { let string = format!("{}{}", "foo", "bar); &string }
  7. });
  8. }
  9.  
  10.  
  11. /* ~~~~=== stderr ===~~~~
  12. Compiling playground v0.0.1 (/playground)
  13. error: unterminated double quote string
  14. --> src/main.rs:6:71
  15. |
  16. 6 | fn foo<'a>() -> &'a str { let string = format!("{}{}", "foo", "bar); &string }
  17. | _______________________________________________________________________^
  18. 7 | | });
  19. 8 | | }
  20. | |__^
  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