Skip to content

Instantly share code, notes, and snippets.

@nyuichi
Created September 27, 2012 09:56
Show Gist options
  • Select an option

  • Save nyuichi/3793221 to your computer and use it in GitHub Desktop.

Select an option

Save nyuichi/3793221 to your computer and use it in GitHub Desktop.
bug?
class Klass {
function method(x : int) : int {
if (x == 0) { // compiler complains that x is not initialized
return 1;
}
else {
var x = 2;
return x;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment