Created
July 31, 2013 05:40
-
-
Save jmgrosen/6119593 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct Thing; | |
| fn do_stuff<'a>(thing: &'a Thing) -> &'a fn() { | |
| let cloned_thing = thing.clone(); | |
| || { | |
| let cloned_cloned_thing = cloned_thing.clone(); | |
| } | |
| } | |
| fn main() {} |
jmgrosen
commented
Jul 31, 2013
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment