We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue description:
let add ( x : int{x > 0} ) ( y : int{y > 0} ) : int{ add_return >= x && add_return >= y} = x + y let f2 ( x : int{x < 0} ) : int{ f2_return > 0} = add (x * x) (x * x)
fails with the following message: this is a combinatorial expression and is expected to be static
Action:
Understand why is it failing and fix the issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue description:
let add ( x : int{x > 0} ) ( y : int{y > 0} ) : int{ add_return >= x && add_return >= y} = x + y
let f2 ( x : int{x < 0} ) : int{ f2_return > 0} = add (x * x) (x * x)
fails with the following message: this is a combinatorial expression and is expected to be static
Action:
Understand why is it failing and fix the issue.
The text was updated successfully, but these errors were encountered: