Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. fn main() {
  2. println!("{:?}", {
  3. std::fs::File::open("foo").map_err(<_>::to_string)
  4. });
  5. }
  6.  
  7.  
  8. /* ~~~~=== stderr ===~~~~
  9. Compiling playground v0.0.1 (file:///playground)
  10. error[E0631]: type mismatch in function arguments
  11. --> src/main.rs:5:36
  12. |
  13. 5 | std::fs::File::open("foo").map_err(<_>::to_string)
  14. | ^^^^^^^
  15. | |
  16. | expected signature of `fn(std::io::Error) -> _`
  17. | found signature of `for<'r> fn(&'r _) -> _`
  18.  
  19. error: aborting due to previous error
  20.  
  21. error: Could not compile `playground`.
  22.  
  23. To learn more, run the command again with --verbose.
  24.  
  25. */
  26.  
  27. /* ~~~~=== stdout ===~~~~
  28.  
  29. */
Add Comment
Please, Sign In to add comment