Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

function to return uint256 requires all code paths to return uint256 #93

Open
ethers opened this issue Feb 6, 2016 · 0 comments
Open

Comments

@ethers
Copy link
Member

ethers commented Feb 6, 2016

if there is a single return that not uint256, for example return(0), the contract function never returns uint256.

In the example below, since there is a single return(0) where uint256 was forgotten, the function never returns uint256 even when x is 2,3,4...

if x==1:
  return(0)
if x==2:
  return(-1:uint256)
if x==3:
  return(-1:uint256)
if x==4:
  return(-1:uint256)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant