Skip to content

Instantly share code, notes, and snippets.

@alexcrichton
Created May 6, 2013 20:37
Show Gist options
  • Save alexcrichton/5527999 to your computer and use it in GitHub Desktop.
Save alexcrichton/5527999 to your computer and use it in GitHub Desktop.
struct MyStruct(int);
fn main() {
let b = MyStruct(3);
let mut MyStruct(a) = b;
a += 3;
io::println(fmt!("%d\n", a));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment