Guest User

Untitled

a guest
Feb 17th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. fn x() -> impl FnOnce() {
  2. let s = String::new();
  3. let r = &s;
  4.  
  5. move || {
  6. let _x = (s, r);
  7. }
  8. }
Add Comment
Please, Sign In to add comment