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
in
not in
vyper --version
python --version
When trying to use the in or not in operator with a dynamic array of enum, compilation fails with a TypeMismatch exception:
TypeMismatch
enum A: a b @external def foo(): f: DynArray[A, 12] = [] b: bool = A.a in f
h/t @trocher
Fill this in if you know how to fix it.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Version Information
vyper --version
): 9e3b9a2python --version
): 3.10.4What's your issue about?
When trying to use the
in
ornot in
operator with a dynamic array of enum, compilation fails with aTypeMismatch
exception:h/t @trocher
How can it be fixed?
Fill this in if you know how to fix it.
The text was updated successfully, but these errors were encountered: