Skip to content

Instantly share code, notes, and snippets.

@tbillington
Created August 5, 2014 09:28
Show Gist options
  • Save tbillington/7b732fe0057ef410a769 to your computer and use it in GitHub Desktop.
Save tbillington/7b732fe0057ef410a769 to your computer and use it in GitHub Desktop.
let a = vertexs.slice(face.a,face.a+1).iter().next();
let mut aa: Rc<RefCell<Vertex>>;
match a {
Some(x) => aa = x.clone(),
None => (),
};
error: use of possibly uninitialized variable: `aa`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment