Guest User

Untitled

a guest
May 16th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. fn main() {
  2. println!("{:?}", {
  3. fn c() -> impl std::ops::Add {1}
  4. });
  5. }
  6.  
  7.  
  8. /* ~~~~=== stderr ===~~~~
  9. Compiling playground v0.0.1 (file:///playground)
  10.  
  11. thread 'rustc' has overflowed its stack
  12. fatal runtime error: stack overflow
  13. error: Could not compile `playground`.
  14.  
  15. To learn more, run the command again with --verbose.
  16.  
  17. */
  18.  
  19. /* ~~~~=== stdout ===~~~~
  20.  
  21. */
Add Comment
Please, Sign In to add comment