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
Map<int, bitvec<32>>
I would like to define a flux definition:
flux_rs::defs! { fn bv_map_get(m: Map<int, bitvec<32>>, k:int) -> bitvec<32> { map_select(m, k) } }
but it fails with the error:
error[E0999]: syntax error: unexpected token --> src/main.rs:50:37 | 50 | fn map_get(m: Map<int, bitvec<32>>, k:int) -> bitvec<32> { map_select(m, k) } | ^
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I would like to define a flux definition:
but it fails with the error:
The text was updated successfully, but these errors were encountered: