Created
February 11, 2013 02:55
-
-
Save alexcrichton/4752141 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
fn main() { | |
let a = ~[~1]; | |
for a.each |&b| { | |
// b is a copy of the owned box | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment