Guest User

Untitled

a guest
Apr 26th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. fn main() {
  2. println!("{:?}", {
  3. fn foo() -> impl Fn() { || () }\
  4. });
  5. }
  6.  
  7.  
  8. /* ~~~~=== stderr ===~~~~
  9. Compiling playground v0.0.1 (file:///playground)
  10. error: unknown start of token: \
  11. --> src/main.rs:5:40
  12. |
  13. 5 | fn foo() -> impl Fn() { || () }\
  14. | ^
  15.  
  16. error: Could not compile `playground`.
  17.  
  18. To learn more, run the command again with --verbose.
  19.  
  20. */
  21.  
  22. /* ~~~~=== stdout ===~~~~
  23.  
  24. */
Add Comment
Please, Sign In to add comment