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
Cairo version:
Alpha 7
Current behavior:
Compiling the following code with starknet-compile works, but compiling that with starknet-sierra-compile fails with:
starknet-compile
starknet-sierra-compile
Error: Compilation failed. Caused by: [13] is not a supported builtin type.
Expected behavior:
This should compile.
Steps to reproduce:
The following is a minimal reproduction that exhibits this behaviour.
mod BuggedCode { use traits::Into; #[external] fn test_bitwise(input: u256) { input & 35425.into(); } }
You need to compile it down to CASM using either Scarb or starknet-sierra-compile.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Report
Cairo version:
Alpha 7
Current behavior:
Compiling the following code with
starknet-compile
works, but compiling that withstarknet-sierra-compile
fails with:Expected behavior:
This should compile.
Steps to reproduce:
The following is a minimal reproduction that exhibits this behaviour.
You need to compile it down to CASM using either Scarb or starknet-sierra-compile.
The text was updated successfully, but these errors were encountered: