Skip to content

Instantly share code, notes, and snippets.

@nikomatsakis
Created June 5, 2012 17:14
Show Gist options
  • Save nikomatsakis/2876303 to your computer and use it in GitHub Desktop.
Save nikomatsakis/2876303 to your computer and use it in GitHub Desktop.
fn main() {
let x = {mut f: 3};
let y = [x];
let z = y[0];
let f = fn@() {
x.f = 4;
};
f();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment