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
This should successfully verify (in Carbon, it does), but verification fails:
domain Foo { axiom unsound { false } } method test() { assert false }
Silicon reports that the assertion might not hold.
When declaring a variable of type Foo in the method test, verification succeeds:
Foo
test
domain Foo { axiom unsound { false } } method test() { var x: Foo assert false }
The text was updated successfully, but these errors were encountered:
I don't have a strong opinion, but we should be careful not to let such corner cases prevent (in general important) optimisations.
Sorry, something went wrong.
marcoeilers
No branches or pull requests
This should successfully verify (in Carbon, it does), but verification fails:
Silicon reports that the assertion might not hold.
When declaring a variable of type
Foo
in the methodtest
, verification succeeds:The text was updated successfully, but these errors were encountered: