-
Notifications
You must be signed in to change notification settings - Fork 996
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
Fails to parse certain tuple assignments #306
Labels
Comments
This is a bit different now. The above example will compile and run with slither (though its correctness may not be adequate, not sure). Here is an example of what will analyze without error, and what will throw an exception for more context:
Exception:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Slither fails to parse certain tuple assignment expressions such as:
(uint y, ) = (1,2);
I believe the only broken case is where you have a partial assignment tuple on the LHS and a tuple literal on the RHS
The text was updated successfully, but these errors were encountered: