Skip to content

Instantly share code, notes, and snippets.

@calvinmetcalf
Last active December 22, 2015 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calvinmetcalf/6437111 to your computer and use it in GitHub Desktop.
Save calvinmetcalf/6437111 to your computer and use it in GitHub Desktop.
fn thisWontCompile( a:uint, b:uint ) -> uint {
let c = 0u;
c += a;//FAIL
c += b;
return c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment